Searched defs:arguments (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_4/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 | 347 void **arguments; member in struct:_zend_function_state
|
| /PHP_5_4/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_5_4/ext/standard/ |
| H A D | basic_functions.c | 122 zval **arguments; member in struct:_user_tick_function_entry 4216 /* Attempt to allocate enough memory to hold all of the arguments 4319 /* Skip unknown arguments. */ 4740 Call a user function which is the first parameter with the arguments contained in array */ 4879 Call a user function which is the first parameter with the arguments contained in array */ 4911 zval_ptr_dtor(&shutdown_function_entry->arguments[i]); 4913 efree(shutdown_function_entry->arguments); 4922 zval_ptr_dtor(&tick_function_entry->arguments[i]); 4924 efree(tick_function_entry->arguments); 4933 if (!zend_is_callable(shutdown_function_entry->arguments[ [all...] |
| H A D | basic_functions.h | 256 zval **arguments; member in struct:_php_shutdown_function_entry
|
| /PHP_5_4/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) 2822 /* {{{ proto mixed SoapClient::__call ( string function_name, array arguments [, array options [, array input_headers [, array output_headers]]]) 4118 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 4203 param = serialize_parameter(parameter, arguments[i], i, NULL, use, method TSRMLS_CC); 4205 param = serialize_parameter(parameter, arguments[i], i, NULL, use, body TSRMLS_CC);
|
Completed in 21 milliseconds