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         417 ext/interbase/ibase_service.c static void _php_ibase_backup_restore(INTERNAL_FUNCTION_PARAMETERS, char operation) /* {{{ */
operation         444 ext/interbase/ibase_service.c 		operation, isc_spb_dbname, (char)dblen, (char)(dblen >> 8), db,
operation         757 ext/soap/php_sdl.c 				xmlNodePtr portType, operation;
operation         912 ext/soap/php_sdl.c 					operation = trav2;
operation         914 ext/soap/php_sdl.c 					op_name = get_attribute(operation->properties, "name");
operation         919 ext/soap/php_sdl.c 					trav3 = operation->children;
operation         953 ext/soap/php_sdl.c 						soapOperation = get_node_ex(operation->children, "operation", wsdl_soap_namespace);
operation         996 ext/soap/php_sdl.c 							input = get_node_ex(operation->children, "input", WSDL_NAMESPACE);
operation        1030 ext/soap/php_sdl.c 							output = get_node_ex(operation->children, "output", WSDL_NAMESPACE);
operation        1068 ext/soap/php_sdl.c 								xmlNodePtr soap_fault = get_node_with_attribute_ex(operation->children, "fault", WSDL_NAMESPACE, "name", f->name, NULL);
operation        3014 ext/spl/spl_directory.c 	ZEND_ARG_INFO(0, operation)
operation        1027 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, operation)
operation         337 ext/standard/file.c 	zend_long operation = 0;
operation         339 ext/standard/file.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rl|z/", &res, &operation, &wouldblock) == FAILURE) {
operation         345 ext/standard/file.c 	act = operation & 3;
operation         357 ext/standard/file.c 	act = flock_values[act - 1] | (operation & PHP_LOCK_NB ? LOCK_NB : 0);
operation         359 ext/standard/file.c 		if (operation && errno == EWOULDBLOCK && 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);