Searched refs:internal_function (Results 1 – 19 of 19) sorted by relevance
/PHP-7.2/Zend/ |
H A D | zend_closures.c | 59 zend_string_release(func->internal_function.function_name); in ZEND_METHOD() 362 invoke->internal_function.fn_flags = in zend_get_closure_invoke_method() 365 invoke->internal_function.fn_flags |= in zend_get_closure_invoke_method() 368 invoke->internal_function.handler = ZEND_MN(Closure___invoke); in zend_get_closure_invoke_method() 369 invoke->internal_function.module = 0; in zend_get_closure_invoke_method() 370 invoke->internal_function.scope = zend_ce_closure; in zend_get_closure_invoke_method() 371 invoke->internal_function.function_name = ZSTR_KNOWN(ZEND_STR_MAGIC_INVOKE); in zend_get_closure_invoke_method() 695 if (UNEXPECTED(closure->func.internal_function.handler == zend_closure_internal_handler)) { in zend_create_closure() 701 closure->orig_internal_handler = closure->func.internal_function.handler; in zend_create_closure() 703 closure->func.internal_function.handler = zend_closure_internal_handler; in zend_create_closure()
|
H A D | zend_API.c | 2188 internal_function->handler = ptr->handler; in zend_register_functions() 2190 internal_function->scope = scope; in zend_register_functions() 2191 internal_function->prototype = NULL; in zend_register_functions() 2199 internal_function->fn_flags = ptr->flags; in zend_register_functions() 2208 internal_function->num_args = ptr->num_args; in zend_register_functions() 2221 internal_function->num_args--; in zend_register_functions() 2238 internal_function->arg_info = NULL; in zend_register_functions() 2239 internal_function->num_args = 0; in zend_register_functions() 2240 internal_function->required_num_args = 0; in zend_register_functions() 2263 if (!internal_function->handler) { in zend_register_functions() [all …]
|
H A D | zend_compile.h | 452 zend_internal_function internal_function; member
|
H A D | zend_builtin_functions.c | 1505 func->internal_function.handler != zif_display_disabled_function)); in ZEND_FUNCTION() 2687 && zif->internal_function.module == module) { in ZEND_FUNCTION()
|
H A D | zend_execute_API.c | 834 func->internal_function.handler(call, fci->retval); in zend_call_function()
|
H A D | zend_execute.c | 989 zend_internal_arg_info *ret_info = zf->internal_function.arg_info - 1; in zend_verify_internal_return_type() 2083 execute_data->func->internal_function.handler(execute_data, return_value); in execute_internal()
|
H A D | zend_vm_def.h | 3491 fbc->internal_function.handler(call, ret); 3590 fbc->internal_function.handler(call, ret); 3681 fbc->internal_function.handler(call, ret); 7847 fbc->internal_function.handler(call, ret);
|
H A D | zend_compile.c | 3879 if (fbc->internal_function.handler == ZEND_FN(display_disabled_function)) { in zend_try_compile_special_func()
|
H A D | zend_vm_execute.h | 577 fbc->internal_function.handler(call, ret); 621 fbc->internal_function.handler(call, ret); 742 fbc->internal_function.handler(call, ret); 820 fbc->internal_function.handler(call, ret); 911 fbc->internal_function.handler(call, ret); 1036 fbc->internal_function.handler(call, ret); 2031 fbc->internal_function.handler(call, ret);
|
/PHP-7.2/ext/opcache/ |
H A D | zend_accelerator_module.c | 416 orig_file_exists = old_function->internal_function.handler; 417 old_function->internal_function.handler = accel_file_exists; 420 orig_is_file = old_function->internal_function.handler; 421 old_function->internal_function.handler = accel_is_file; 424 orig_is_readable = old_function->internal_function.handler; 425 old_function->internal_function.handler = accel_is_readable;
|
H A D | ZendAccelerator.c | 2809 orig_chdir = func->internal_function.handler; 2810 func->internal_function.handler = ZEND_FN(accel_chdir);
|
/PHP-7.2/ext/xmlreader/ |
H A D | php_xmlreader.c | 400 …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.2/ext/xmlwriter/ |
H A D | php_xmlwriter.c | 692 …_string_arg(INTERNAL_FUNCTION_PARAMETERS, xmlwriter_read_one_char_t internal_function, char *err_s… in php_xmlwriter_string_arg() argument 725 retval = internal_function(ptr, (xmlChar *) name); in php_xmlwriter_string_arg() 734 static void php_xmlwriter_end(INTERNAL_FUNCTION_PARAMETERS, xmlwriter_read_int_t internal_function) in php_xmlwriter_end() argument 759 retval = internal_function(ptr); in php_xmlwriter_end()
|
/PHP-7.2/ext/phar/ |
H A D | func_interceptors.c | 1012 PHAR_G(orig_##func) = orig->internal_function.handler; \ 1013 orig->internal_function.handler = phar_##func; \ 1049 orig->internal_function.handler = PHAR_G(orig_##func); \
|
/PHP-7.2/ext/reflection/ |
H A D | php_reflection.c | 199 && (fptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) in _copy_function() 204 …copy_fptr->internal_function.function_name = zend_string_copy(fptr->internal_function.function_nam… in _copy_function() 225 && (fptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) in _free_function() 227 zend_string_release(fptr->internal_function.function_name); in _free_function() 1051 && fptr->internal_function.module == module) { in _extension_string() 1759 …RETURN_BOOL(fptr->type == ZEND_INTERNAL_FUNCTION && fptr->internal_function.handler == zif_display… in ZEND_METHOD() 3118 (mptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) in ZEND_METHOD() 3227 if ((mptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) { in reflection_method_invoke() 5814 && fptr->internal_function.module == module) { in ZEND_METHOD()
|
/PHP-7.2/ext/opcache/Optimizer/ |
H A D | sccp.c | 837 || func->internal_function.handler == ZEND_FN(display_disabled_function)) { in ct_eval_func_call() 851 func->internal_function.handler(execute_data, result); in ct_eval_func_call()
|
H A D | zend_optimizer.c | 224 fbc->internal_function.handler == ZEND_FN(display_disabled_function)); in zend_optimizer_is_disabled_func()
|
/PHP-7.2/sapi/phpdbg/ |
H A D | phpdbg_prompt.c | 1930 } else if (data->func->internal_function.function_name) { in phpdbg_force_interruption() 1931 …unc=\"%s\"", "Current opline: in internal function %s", data->func->internal_function.function_nam… in phpdbg_force_interruption()
|
/PHP-7.2/ext/spl/ |
H A D | php_spl.c | 541 fcc.function_handler->internal_function.handler == zif_spl_autoload_call) { in PHP_FUNCTION()
|
Completed in 300 milliseconds