| /PHP_TRUNK/ext/phar/phar/ |
| H A D | pharcommand.inc | 49 * Phar arguments 454 * @return array $args The arguments for a new Phar archive. 720 * @param array $args Function arguments. 757 * @return arguments list 838 * The arguments for the extract function. 840 * @return array The arguments for the extraction. 939 * @return array informations about the arguments to use. 975 * Add a file arguments 1034 * @return string arguments for a stub 1076 * @return array $args The arguments passe [all...] |
| /PHP_TRUNK/Zend/ |
| H A D | zend_execute.h | 310 void **p = ex->function_state.arguments; 319 void **p = ex->function_state.arguments;
|
| H A D | zend_closures.c | 51 zval ***arguments; local 54 arguments = emalloc(sizeof(zval**) * ZEND_NUM_ARGS()); 55 if (zend_get_parameters_array_ex(ZEND_NUM_ARGS(), arguments) == FAILURE) { 56 efree(arguments); 57 zend_error(E_RECOVERABLE_ERROR, "Cannot get arguments for calling closure"); 59 } else if (call_user_function_ex(CG(function_table), NULL, this_ptr, &closure_result_ptr, ZEND_NUM_ARGS(), arguments, 1, NULL TSRMLS_CC) == FAILURE) { 71 efree(arguments);
|
| H A D | zend_compile.h | 357 void **arguments; member in struct:_zend_function_state
|
| H A D | zend_execute_API.c | 883 EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C);
|
| H A D | zend_generators.c | 95 /* Clear any backed up stack arguments */ 101 if (execute_data->function_state.arguments) { 118 * have to free it. It also contains the arguments passed to the 122 void **arguments = prev_execute_data->function_state.arguments; local 124 if (arguments) { 125 int arguments_count = (int) (zend_uintptr_t) *arguments; 126 zval **arguments_start = (zval **) (arguments - arguments_count); 330 * makes the arguments available to func_get_args(). So we have to
|
| H A D | zend_builtin_functions.c | 390 Get the number of arguments that were passed to the function */ 395 if (ex && ex->function_state.arguments) { 396 RETURN_LONG((long)(zend_uintptr_t)*(ex->function_state.arguments)); 424 if (!ex || !ex->function_state.arguments) { 429 p = ex->function_state.arguments; 430 arg_count = (int)(zend_uintptr_t) *p; /* this is the amount of arguments passed to func_get_arg(); */ 446 Get an array of the arguments that were passed to the function */ 454 if (!ex || !ex->function_state.arguments) { 459 p = ex->function_state.arguments; 460 arg_count = (int)(zend_uintptr_t) *p; /* this is the amount of arguments passe [all...] |
| H A D | zend_execute.c | 1541 * | EX(function_state).arguments |--+ | 1611 * and the passed arguments 1626 EX(prev_execute_data)->function_state.arguments = (void**)((char*)ZEND_VM_STACK_ELEMETS(EG(argument_stack)) + ZEND_MM_ALIGNED_SIZE(sizeof(zval*)) * args_count); 1628 /* copy arguments */ 1629 *EX(prev_execute_data)->function_state.arguments = (void*)(zend_uintptr_t)args_count; 1683 EX(function_state).arguments = NULL;
|
| H A D | zend_vm_def.h | 1858 EX(function_state).arguments = NULL; 1882 EX(function_state).arguments = NULL; 1967 EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C); 1974 zval **p = (zval**)EX(function_state).arguments; 2062 EX(function_state).arguments = NULL; 5023 * arguments that have to be dtor'ed) starts */ 5027 * arguments pushed to the stack that have to be dtor'ed. */
|
| H A D | zend_vm_execute.h | 412 EX(function_state).arguments = NULL; 436 EX(function_state).arguments = NULL; 521 EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C); 528 zval **p = (zval**)EX(function_state).arguments; 616 EX(function_state).arguments = NULL; 983 * arguments that have to be dtor'ed) starts */ 987 * arguments pushed to the stack that have to be dtor'ed. */ [all...] |
| /PHP_TRUNK/ext/mysqli/ |
| H A D | mysqli_embedded.c | 30 /* {{{ proto bool mysqli_embedded_server_start(bool start, array arguments, array groups) 40 char **arguments; local 53 /* get arguments */ 55 arguments = safe_emalloc(sizeof(char *), argc + 1, 0); 56 arguments[0] = NULL; 69 arguments[++index] = Z_STRVAL_PP(item); 98 rc = mysql_server_init(argc, arguments, groups); 101 efree(arguments);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | basic_functions.h | 256 zval **arguments; member in struct:_php_shutdown_function_entry
|
| H A D | basic_functions.c | 122 zval **arguments; member in struct:_user_tick_function_entry 4268 /* Attempt to allocate enough memory to hold all of the arguments 4371 /* Skip unknown arguments. */ 4792 Call a user function which is the first parameter with the arguments contained in array */ 4931 Call a user function which is the first parameter with the arguments contained in array */ 4963 zval_ptr_dtor(&shutdown_function_entry->arguments[i]); 4965 efree(shutdown_function_entry->arguments); 4974 zval_ptr_dtor(&tick_function_entry->arguments[i]); 4976 efree(tick_function_entry->arguments); 4985 if (!zend_is_callable(shutdown_function_entry->arguments[ [all...] |
| /PHP_TRUNK/ext/session/ |
| H A D | session.c | 1639 shutdown_function_entry.arguments = (zval **) safe_emalloc(sizeof(zval *), 1, 0); 1643 shutdown_function_entry.arguments[0] = callback; 1648 efree(shutdown_function_entry.arguments); 1945 shutdown_function_entry.arguments = (zval **) safe_emalloc(sizeof(zval *), 1, 0); 1949 shutdown_function_entry.arguments[0] = callback; 1953 efree(shutdown_function_entry.arguments);
|
| /PHP_TRUNK/ext/soap/ |
| H A D | soap.c | 63 static xmlDocPtr serialize_function_call(zval *this_ptr, sdlFunctionPtr function, char *function_name, char *uri, zval **arguments, int arg_count, int version, HashTable *soap_headers TSRMLS_DC); 329 ZEND_ARG_INFO(0, arguments) 334 ZEND_ARG_INFO(0, arguments) 2833 /* {{{ proto mixed SoapClient::__call ( string function_name, array arguments [, array options [, array input_headers [, array output_headers]]]) 4129 static xmlDocPtr serialize_function_call(zval *this_ptr, sdlFunctionPtr function, char *function_name, char *uri, zval **arguments, int arg_count, int version, HashTable *soap_headers TSRMLS_DC) argument 4214 param = serialize_parameter(parameter, arguments[i], i, NULL, use, method TSRMLS_CC); 4216 param = serialize_parameter(parameter, arguments[i], i, NULL, use, body TSRMLS_CC);
|