Searched defs:operation (Results 1 - 4 of 4) sorted by relevance
| /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 | 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 | 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)) {
|
Completed in 11 milliseconds