Home
last modified time | relevance | path

Searched refs:internal_function (Results 1 – 18 of 18) sorted by relevance

/PHP-7.0/Zend/
H A Dzend_closures.c68 zend_string_release(func->internal_function.function_name); in ZEND_METHOD()
270 invoke->internal_function.fn_flags = in zend_get_closure_invoke_method()
273 invoke->internal_function.fn_flags |= in zend_get_closure_invoke_method()
276 invoke->internal_function.handler = ZEND_MN(Closure___invoke); in zend_get_closure_invoke_method()
277 invoke->internal_function.module = 0; in zend_get_closure_invoke_method()
278 invoke->internal_function.scope = zend_ce_closure; in zend_get_closure_invoke_method()
279 …invoke->internal_function.function_name = zend_string_init(ZEND_INVOKE_FUNC_NAME, sizeof(ZEND_INVO… in zend_get_closure_invoke_method()
594 if (UNEXPECTED(closure->func.internal_function.handler == zend_closure_internal_handler)) { in zend_create_closure()
600 closure->orig_internal_handler = closure->func.internal_function.handler; in zend_create_closure()
602 closure->func.internal_function.handler = zend_closure_internal_handler; in zend_create_closure()
H A Dzend_API.c2161 internal_function->handler = ptr->handler; in zend_register_functions()
2163 internal_function->scope = scope; in zend_register_functions()
2164 internal_function->prototype = NULL; in zend_register_functions()
2172 internal_function->fn_flags = ptr->flags; in zend_register_functions()
2181 internal_function->num_args = ptr->num_args; in zend_register_functions()
2194 internal_function->num_args--; in zend_register_functions()
2207 internal_function->arg_info = NULL; in zend_register_functions()
2208 internal_function->num_args = 0; in zend_register_functions()
2209 internal_function->required_num_args = 0; in zend_register_functions()
2232 if (!internal_function->handler) { in zend_register_functions()
[all …]
H A Dzend_execute.c755 if (EXPECTED(arg_num <= zf->internal_function.num_args)) { in zend_verify_internal_arg_type()
756 cur_arg_info = &zf->internal_function.arg_info[arg_num-1]; in zend_verify_internal_arg_type()
757 } else if (zf->internal_function.fn_flags & ZEND_ACC_VARIADIC) { in zend_verify_internal_arg_type()
758 cur_arg_info = &zf->internal_function.arg_info[zf->internal_function.num_args]; in zend_verify_internal_arg_type()
2046 execute_data->func->internal_function.handler(execute_data, return_value); in execute_internal()
H A Dzend_compile.h420 zend_internal_function internal_function; member
H A Dzend_builtin_functions.c1531 func->internal_function.handler != zif_display_disabled_function)); in ZEND_FUNCTION()
2777 && zif->internal_function.module == module) { in ZEND_FUNCTION()
H A Dzend_execute_API.c887 func->internal_function.handler(call, fci->retval); in zend_call_function()
H A Dzend_vm_def.h3588 fbc->internal_function.handler(call, ret);
3716 fbc->internal_function.handler(call, ret);
3844 fbc->internal_function.handler(call, ret);
8010 fbc->internal_function.handler(call, ret);
H A Dzend_compile.c3199 if (fbc->internal_function.handler == ZEND_FN(display_disabled_function)) { in zend_try_compile_special_func()
H A Dzend_vm_execute.h586 fbc->internal_function.handler(call, ret);
714 fbc->internal_function.handler(call, ret);
842 fbc->internal_function.handler(call, ret);
1799 fbc->internal_function.handler(call, ret);
/PHP-7.0/ext/opcache/
H A Dzend_accelerator_module.c415 orig_file_exists = old_function->internal_function.handler;
416 old_function->internal_function.handler = accel_file_exists;
419 orig_is_file = old_function->internal_function.handler;
420 old_function->internal_function.handler = accel_is_file;
423 orig_is_readable = old_function->internal_function.handler;
424 old_function->internal_function.handler = accel_is_readable;
H A DZendAccelerator.c2859 orig_chdir = func->internal_function.handler;
2860 func->internal_function.handler = ZEND_FN(accel_chdir);
/PHP-7.0/ext/xmlreader/
H A Dphp_xmlreader.c400 …p_xmlreader_string_arg(INTERNAL_FUNCTION_PARAMETERS, xmlreader_read_one_char_t internal_function) { in php_xmlreader_string_arg() argument
420 retchar = (char *)internal_function(intern->ptr, (const unsigned char *)name); in php_xmlreader_string_arg()
433 …c void php_xmlreader_no_arg(INTERNAL_FUNCTION_PARAMETERS, xmlreader_read_int_t internal_function) { in php_xmlreader_no_arg() argument
442 retval = internal_function(intern->ptr); in php_xmlreader_no_arg()
458 …hp_xmlreader_no_arg_string(INTERNAL_FUNCTION_PARAMETERS, xmlreader_read_char_t internal_function) { in php_xmlreader_no_arg_string() argument
467 retchar = (char *)internal_function(intern->ptr); in php_xmlreader_no_arg_string()
/PHP-7.0/ext/xmlwriter/
H A Dphp_xmlwriter.c692 …_string_arg(INTERNAL_FUNCTION_PARAMETERS, xmlwriter_read_one_char_t internal_function, char *err_s… in php_xmlwriter_string_arg() argument
724 retval = internal_function(ptr, (xmlChar *) name); in php_xmlwriter_string_arg()
733 static void php_xmlwriter_end(INTERNAL_FUNCTION_PARAMETERS, xmlwriter_read_int_t internal_function) in php_xmlwriter_end() argument
758 retval = internal_function(ptr); in php_xmlwriter_end()
/PHP-7.0/ext/phar/
H A Dfunc_interceptors.c1056 PHAR_G(orig_##func) = orig->internal_function.handler; \
1057 orig->internal_function.handler = phar_##func; \
1093 orig->internal_function.handler = PHAR_G(orig_##func); \
/PHP-7.0/ext/reflection/
H A Dphp_reflection.c280 && (fptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) in _copy_function()
285 …copy_fptr->internal_function.function_name = zend_string_copy(fptr->internal_function.function_nam… in _copy_function()
306 && (fptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) in _free_function()
308 zend_string_release(fptr->internal_function.function_name); in _free_function()
1128 && fptr->internal_function.module == module) { in _extension_string()
1823 …RETURN_BOOL(fptr->type == ZEND_INTERNAL_FUNCTION && fptr->internal_function.handler == zif_display… in ZEND_METHOD()
3167 (mptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) in ZEND_METHOD()
3368 if ((mptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) { in ZEND_METHOD()
5673 && fptr->internal_function.module == module) { in ZEND_METHOD()
/PHP-7.0/ext/opcache/Optimizer/
H A Dzend_optimizer.c124 fbc->internal_function.handler == ZEND_FN(display_disabled_function)); in zend_optimizer_is_disabled_func()
/PHP-7.0/sapi/phpdbg/
H A Dphpdbg_prompt.c1878 } else if (data->func->internal_function.function_name) { in phpdbg_force_interruption()
1879 …unc=\"%s\"", "Current opline: in internal function %s", data->func->internal_function.function_nam… in phpdbg_force_interruption()
/PHP-7.0/ext/spl/
H A Dphp_spl.c513 fcc.function_handler->internal_function.handler == zif_spl_autoload_call) { in PHP_FUNCTION()

Completed in 206 milliseconds