| /PHP_5_3/ext/soap/tests/schema/ |
| H A D | test_schema.inc | 32 <operation name="test"> 34 </operation> 38 <operation name="test"> 39 <soap:operation soapAction="#test" style="$style"/> 43 </operation>
|
| /PHP_5_3/ext/spl/examples/ |
| H A D | callbackfilteriterator.inc | 97 /** @return operation mode */ 109 /** @return operation flags */
|
| /PHP_5_3/ext/spl/internal/ |
| H A D | emptyiterator.inc | 20 /** No operation. 53 /** No operation.
|
| H A D | recursiveregexiterator.inc | 28 * @param mode operation mode (one of self::MATCH, self::GET_MATCH,
|
| H A D | regexiterator.inc | 32 private $mode; /**< operation mode (one of self::MATCH, 46 * @param mode operation mode (one of self::MATCH, self::GET_MATCH, 120 /** @return current operation mode 134 /** @return current operation flags
|
| H A D | splfileobject.inc | 115 * @param operation lock operation (LOCK_SH, LOCK_EX, LOCK_UN, LOCK_NB) 116 * @retval $wouldblock whether the operation would block 118 function flock($operation, &$wouldblock) 120 return flock($this->fp, $operation, $wouldblock);
|
| /PHP_5_3/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 1095 ** sync operation only needs to flush data to mass storage. Inode 1289 ** opcode as doing so may disrupt the operation of the specialized VFSes 2226 ** ^This function causes any pending database operation to abort and 2229 ** or Ctrl-C where the user wants a long query operation to halt 2233 ** thread that is currently running the database operation. But it 2237 ** ^If an SQL operation is very nearly finished at the time when 2241 ** ^An SQL operation that is interrupted will return [SQLITE_INTERRUPT]. 2242 ** ^If the interrupted SQL operation is an INSERT, UPDATE, or DELETE 2704 ** When the callback returns [SQLITE_OK], that means the operation 2725 ** [SQLITE_IGNORE] then the [DELETE] operation proceed [all...] |
| /PHP_5_3/ext/standard/tests/file/ |
| H A D | file.inc | 89 "empty" = no fill operation performed, returns true
|
| /PHP_5_3/ext/interbase/ |
| H A D | ibase_service.c | 136 static void _php_ibase_user(INTERNAL_FUNCTION_PARAMETERS, char operation) /* {{{ */ argument 150 (operation == isc_action_svc_delete_user) ? "rs" : "rss|sss", 159 buf[0] = operation; 418 static void _php_ibase_backup_restore(INTERNAL_FUNCTION_PARAMETERS, char operation) /* {{{ */ argument 422 * to use for the source and destination in the case of a restore operation. 445 operation, isc_spb_dbname, (char)dblen, (char)(dblen >> 8), db,
|
| /PHP_5_3/ext/soap/ |
| H A D | php_sdl.c | 765 xmlNodePtr portType, operation; local 916 if (!node_is_equal(trav2,"operation")) { 920 operation = trav2; 922 op_name = get_attribute(operation->properties, "name"); 924 soap_error0(E_ERROR, "Parsing WSDL: Missing 'name' attribute for <operation>"); 927 trav3 = operation->children; 930 node_is_equal_ex(trav3, "operation", wsdl_soap_namespace)) { 941 portTypeOperation = get_node_with_attribute_ex(portType->children, "operation", WSDL_NAMESPACE, "name", (char*)op_name->children->content, NULL); 943 soap_error1(E_ERROR, "Parsing WSDL: Missing <portType>/<operation> with name '%s'", op_name->children->content); 961 soapOperation = get_node_ex(operation [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | basic_functions.c | 1060 ZEND_ARG_INFO(0, operation)
|
| H A D | flock_compat.c | 41 PHPAPI int flock(int fd, int operation) argument 43 return php_flock(fd, operation); 47 PHPAPI int php_flock(int fd, int operation) argument 56 if (operation & LOCK_SH) 58 else if (operation & LOCK_EX) 60 else if (operation & LOCK_UN) 67 ret = fcntl(fd, operation & LOCK_NB ? F_SETLK : F_SETLKW, &flck); 69 if (operation & LOCK_NB && ret == -1 && 132 switch (operation & ~LOCK_NB) { /* translate to LockFileEx() op */ 135 ((operation [all...] |
| H A D | flock_compat.h | 28 PHPAPI int php_flock(int fd, int operation); 35 PHPAPI int flock(int fd, int operation);
|
| H A D | file.c | 328 /* {{{ proto bool flock(resource fp, int operation [, int &wouldblock]) 335 long operation = 0; local 337 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|z", &arg1, &operation, &arg3) == FAILURE) { 343 act = operation & 3; 345 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Illegal operation argument"); 354 /* flock_values contains all possible actions if (operation & 4) we won't block on the lock */ 355 act = flock_values[act - 1] | (operation & PHP_LOCK_NB ? LOCK_NB : 0); 357 if (operation && errno == EWOULDBLOCK && arg3 && PZVAL_IS_REF(arg3)) {
|
| /PHP_5_3/ext/spl/ |
| H A D | spl_directory.c | 2679 /* {{{ proto bool SplFileObject::flock(int operation [, int &wouldblock]) 2893 ZEND_ARG_INFO(0, operation)
|