Home
last modified time | relevance | path

Searched refs:arg_count (Results 1 – 13 of 13) sorted by relevance

/PHP-5.6/sapi/apache2filter/
H A Dphp_functions.c229 int arg_count = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
231 …if (zend_parse_parameters(arg_count TSRMLS_CC, "ss|b", &variable, &variable_len, &string_val, &str… in PHP_FUNCTION()
237 if (arg_count == 3 && walk_to_top) { in PHP_FUNCTION()
257 int arg_count = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
260 …if (zend_parse_parameters(arg_count TSRMLS_CC, "s|b", &variable, &variable_len, &walk_to_top) == F… in PHP_FUNCTION()
266 if (arg_count == 2 && walk_to_top) { in PHP_FUNCTION()
/PHP-5.6/sapi/apache2handler/
H A Dphp_functions.c259 int arg_count = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
262 …if (zend_parse_parameters(arg_count TSRMLS_CC, "ss|b", &variable, &variable_len, &string_val, &str… in PHP_FUNCTION()
269 if (arg_count == 3) { in PHP_FUNCTION()
294 int arg_count = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
298 …if (zend_parse_parameters(arg_count TSRMLS_CC, "s|b", &variable, &variable_len, &walk_to_top) == F… in PHP_FUNCTION()
305 if (arg_count == 2) { in PHP_FUNCTION()
/PHP-5.6/Zend/
H A Dzend_API.c48 int arg_count; in zend_get_parameters() local
56 if (param_count>arg_count) { in zend_get_parameters()
64 param_ptr = *(p-arg_count); in zend_get_parameters()
77 arg_count--; in zend_get_parameters()
88 int arg_count; in _zend_get_parameters_array() local
112 arg_count--; in _zend_get_parameters_array()
124 int arg_count; in zend_get_parameters_ex() local
150 int arg_count; in _zend_get_parameters_array_ex() local
163 arg_count--; in _zend_get_parameters_array_ex()
173 int arg_count; in zend_copy_parameters_array() local
[all …]
H A Dzend_builtin_functions.c410 int arg_count; in ZEND_FUNCTION() local
432 if (requested_offset >= arg_count) { in ZEND_FUNCTION()
437 arg = *(p-(arg_count-requested_offset)); in ZEND_FUNCTION()
448 int arg_count; in ZEND_FUNCTION() local
460 array_init_size(return_value, arg_count); in ZEND_FUNCTION()
461 for (i=0; i<arg_count; i++) { in ZEND_FUNCTION()
464 arg = *((zval **) (p-(arg_count-i))); in ZEND_FUNCTION()
2031 int arg_count = (int)(zend_uintptr_t) *p; in debug_backtrace_get_args() local
2034 array_init_size(arg_array, arg_count); in debug_backtrace_get_args()
2035 p -= arg_count; in debug_backtrace_get_args()
[all …]
H A Dzend_execute.h330 int arg_count = (int)(zend_uintptr_t) *p; in zend_vm_stack_get_arg_ex() local
332 if (UNEXPECTED(requested_arg > arg_count)) { in zend_vm_stack_get_arg_ex()
335 return (zval**)p - arg_count + requested_arg - 1; in zend_vm_stack_get_arg_ex()
H A Dzend_vm_def.h3485 zend_uint arg_count = zend_vm_stack_get_args_count(TSRMLS_C);
3495 if (arg_num <= arg_count) {
3496 array_init_size(params, arg_count - arg_num + 1);
3501 for (; arg_num <= arg_count; ++arg_num) {
H A Dzend_vm_execute.h901 zend_uint arg_count = zend_vm_stack_get_args_count(TSRMLS_C); in ZEND_RECV_VARIADIC_SPEC_HANDLER() local
911 if (arg_num <= arg_count) { in ZEND_RECV_VARIADIC_SPEC_HANDLER()
912 array_init_size(params, arg_count - arg_num + 1); in ZEND_RECV_VARIADIC_SPEC_HANDLER()
917 for (; arg_num <= arg_count; ++arg_num) { in ZEND_RECV_VARIADIC_SPEC_HANDLER()
/PHP-5.6/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp373 int arg_count = zend_hash_num_elements(args); in umsg_format_helper() local
388 fargs.resize(arg_count); in umsg_format_helper()
389 farg_names.resize(arg_count); in umsg_format_helper()
623 fargs.empty() ? NULL : &fargs[0], arg_count, resultStr, err.code); in umsg_format_helper()
/PHP-5.6/ext/standard/
H A Dbasic_functions.h257 int arg_count; member
H A Dbasic_functions.c123 int arg_count; member
4946 for (i = 0; i < shutdown_function_entry->arg_count; i++) {
4957 for (i = 0; i < tick_function_entry->arg_count; i++) {
4983 shutdown_function_entry->arg_count - 1,
5005 tick_fe->arg_count - 1,
5103 shutdown_function_entry.arg_count = ZEND_NUM_ARGS();
5105 if (shutdown_function_entry.arg_count < 1) {
5704 tick_fe.arg_count = ZEND_NUM_ARGS();
5706 if (tick_fe.arg_count < 1) {
5738 for (i = 0; i < tick_fe.arg_count; i++) {
[all …]
/PHP-5.6/ext/soap/
H A Dsoap.c2646 int arg_count, argument
2745 …request = serialize_function_call(this_ptr, fn, NULL, fnb->input.ns, real_args, arg_count, soap_ve…
2783 …request = serialize_function_call(this_ptr, NULL, function, call_uri, real_args, arg_count, soap_v…
2886 int arg_count; local
2957 arg_count = zend_hash_num_elements(Z_ARRVAL_P(args));
2959 if (arg_count > 0) {
2960 real_args = safe_emalloc(sizeof(zval *), arg_count, 0);
2972 if (arg_count > 0) {
4327 for (i = 0;i < arg_count;i++) {
4348 if (n > arg_count) {
[all …]
/PHP-5.6/ext/spl/
H A Dspl_iterators.c1380 int arg_count; in spl_dual_it_call_method() local
1395 arg_count = (ulong) *p; in spl_dual_it_call_method()
1397 func_params = safe_emalloc(sizeof(zval **), arg_count, 0); in spl_dual_it_call_method()
1400 while (arg_count-- > 0) { in spl_dual_it_call_method()
1401 func_params[current] = (zval **) p - (arg_count-current); in spl_dual_it_call_method()
1404 arg_count = current; /* restore */ in spl_dual_it_call_method()
1406 …if (call_user_function_ex(EG(function_table), NULL, &func, &retval_ptr, arg_count, func_params, 0,… in spl_dual_it_call_method()
/PHP-5.6/ext/session/
H A Dsession.c1865 shutdown_function_entry.arg_count = 1;
2196 shutdown_function_entry.arg_count = 1;

Completed in 199 milliseconds