operation 134 ext/interbase/ibase_service.c static void _php_ibase_user(INTERNAL_FUNCTION_PARAMETERS, char operation) /* {{{ */ operation 148 ext/interbase/ibase_service.c (operation == isc_action_svc_delete_user) ? "rs" : "rss|sss", operation 157 ext/interbase/ibase_service.c buf[0] = operation; operation 416 ext/interbase/ibase_service.c static void _php_ibase_backup_restore(INTERNAL_FUNCTION_PARAMETERS, char operation) /* {{{ */ operation 443 ext/interbase/ibase_service.c operation, isc_spb_dbname, (char)dblen, (char)(dblen >> 8), db, operation 765 ext/soap/php_sdl.c xmlNodePtr portType, operation; operation 920 ext/soap/php_sdl.c operation = trav2; operation 922 ext/soap/php_sdl.c op_name = get_attribute(operation->properties, "name"); operation 927 ext/soap/php_sdl.c trav3 = operation->children; operation 961 ext/soap/php_sdl.c soapOperation = get_node_ex(operation->children, "operation", wsdl_soap_namespace); operation 1004 ext/soap/php_sdl.c input = get_node_ex(operation->children, "input", WSDL_NAMESPACE); operation 1038 ext/soap/php_sdl.c output = get_node_ex(operation->children, "output", WSDL_NAMESPACE); operation 1076 ext/soap/php_sdl.c xmlNodePtr soap_fault = get_node_with_attribute_ex(operation->children, "fault", WSDL_NAMESPACE, "name", f->name, NULL); operation 3048 ext/spl/spl_directory.c ZEND_ARG_INFO(0, operation) operation 1039 ext/standard/basic_functions.c ZEND_ARG_INFO(0, operation) operation 345 ext/standard/file.c long operation = 0; operation 347 ext/standard/file.c if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|z", &res, &operation, &wouldblock) == FAILURE) { operation 353 ext/standard/file.c act = operation & 3; operation 365 ext/standard/file.c act = flock_values[act - 1] | (operation & PHP_LOCK_NB ? LOCK_NB : 0); operation 367 ext/standard/file.c if (operation && errno == EWOULDBLOCK && wouldblock && PZVAL_IS_REF(wouldblock)) { operation 41 ext/standard/flock_compat.c PHPAPI int flock(int fd, int operation) operation 43 ext/standard/flock_compat.c return php_flock(fd, operation); operation 47 ext/standard/flock_compat.c PHPAPI int php_flock(int fd, int operation) operation 56 ext/standard/flock_compat.c if (operation & LOCK_SH) operation 58 ext/standard/flock_compat.c else if (operation & LOCK_EX) operation 60 ext/standard/flock_compat.c else if (operation & LOCK_UN) operation 67 ext/standard/flock_compat.c ret = fcntl(fd, operation & LOCK_NB ? F_SETLK : F_SETLKW, &flck); operation 69 ext/standard/flock_compat.c if (operation & LOCK_NB && ret == -1 && operation 136 ext/standard/flock_compat.c switch (operation & ~LOCK_NB) { /* translate to LockFileEx() op */ operation 139 ext/standard/flock_compat.c ((operation & LOCK_NB) ? LOCKFILE_FAIL_IMMEDIATELY : 0), operation 144 ext/standard/flock_compat.c if (LockFileEx(hdl, ((operation & LOCK_NB) ? LOCKFILE_FAIL_IMMEDIATELY : 0), operation 28 ext/standard/flock_compat.h PHPAPI int php_flock(int fd, int operation); operation 35 ext/standard/flock_compat.h PHPAPI int flock(int fd, int operation);