Home
last modified time | relevance | path

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

/PHP-5.5/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.5/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.5/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_execute.h320 int arg_count = (int)(zend_uintptr_t) *p; in zend_vm_stack_get_arg_ex() local
322 if (UNEXPECTED(requested_arg > arg_count)) { in zend_vm_stack_get_arg_ex()
325 return (zval**)p - arg_count + requested_arg - 1; in zend_vm_stack_get_arg_ex()
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()
450 int arg_count; in ZEND_FUNCTION() local
462 array_init_size(return_value, arg_count); in ZEND_FUNCTION()
463 for (i=0; i<arg_count; i++) { in ZEND_FUNCTION()
467 *element = **((zval **) (p-(arg_count-i))); in ZEND_FUNCTION()
2021 int arg_count = (int)(zend_uintptr_t) *p; in debug_backtrace_get_args() local
2024 array_init_size(arg_array, arg_count); in debug_backtrace_get_args()
2025 p -= arg_count; in debug_backtrace_get_args()
[all …]
H A Dzend_vm_def.h1971 ulong arg_count = opline->extended_value; in ZEND_VM_HELPER() local
1973 while (arg_count>0) { in ZEND_VM_HELPER()
1974 zend_verify_arg_type(fbc, ++i, *(p-arg_count), 0 TSRMLS_CC); in ZEND_VM_HELPER()
1975 arg_count--; in ZEND_VM_HELPER()
H A Dzend_vm_execute.h532 ulong arg_count = opline->extended_value; in zend_do_fcall_common_helper_SPEC() local
534 while (arg_count>0) { in zend_do_fcall_common_helper_SPEC()
535 zend_verify_arg_type(fbc, ++i, *(p-arg_count), 0 TSRMLS_CC); in zend_do_fcall_common_helper_SPEC()
536 arg_count--; in zend_do_fcall_common_helper_SPEC()
/PHP-5.5/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp369 int arg_count = zend_hash_num_elements(args); in umsg_format_helper() local
384 fargs.resize(arg_count); in umsg_format_helper()
385 farg_names.resize(arg_count); in umsg_format_helper()
619 fargs.empty() ? NULL : &fargs[0], arg_count, resultStr, err.code); in umsg_format_helper()
/PHP-5.5/ext/standard/
H A Dbasic_functions.h257 int arg_count; member
H A Dbasic_functions.c123 int arg_count; member
4972 for (i = 0; i < shutdown_function_entry->arg_count; i++) {
4983 for (i = 0; i < tick_function_entry->arg_count; i++) {
5009 shutdown_function_entry->arg_count - 1,
5031 tick_fe->arg_count - 1,
5129 shutdown_function_entry.arg_count = ZEND_NUM_ARGS();
5131 if (shutdown_function_entry.arg_count < 1) {
5730 tick_fe.arg_count = ZEND_NUM_ARGS();
5732 if (tick_fe.arg_count < 1) {
5764 for (i = 0; i < tick_fe.arg_count; i++) {
[all …]
/PHP-5.5/ext/soap/
H A Dsoap.c2626 int arg_count, argument
2725 …request = serialize_function_call(this_ptr, fn, NULL, fnb->input.ns, real_args, arg_count, soap_ve…
2763 …request = serialize_function_call(this_ptr, NULL, function, call_uri, real_args, arg_count, soap_v…
2866 int arg_count; local
2937 arg_count = zend_hash_num_elements(Z_ARRVAL_P(args));
2939 if (arg_count > 0) {
2940 real_args = safe_emalloc(sizeof(zval *), arg_count, 0);
2952 if (arg_count > 0) {
4307 for (i = 0;i < arg_count;i++) {
4328 if (n > arg_count) {
[all …]
/PHP-5.5/ext/spl/
H A Dspl_iterators.c1308 int arg_count; in spl_dual_it_call_method() local
1323 arg_count = (ulong) *p; in spl_dual_it_call_method()
1325 func_params = safe_emalloc(sizeof(zval **), arg_count, 0); in spl_dual_it_call_method()
1328 while (arg_count-- > 0) { in spl_dual_it_call_method()
1329 func_params[current] = (zval **) p - (arg_count-current); in spl_dual_it_call_method()
1332 arg_count = current; /* restore */ in spl_dual_it_call_method()
1334 …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.5/ext/session/
H A Dsession.c1833 shutdown_function_entry.arg_count = 1;
2149 shutdown_function_entry.arg_count = 1;

Completed in 222 milliseconds