Searched defs:arguments (Results 1 - 7 of 7) sorted by relevance
| /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/Zend/ |
| 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_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
|
| /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);
|
Completed in 28 milliseconds