Home
last modified time | relevance | path

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

/PHP-5.6/Zend/
H A Dzend_execute_API.c696 EX(function_state).function = fci_cache->function_handler; in zend_call_function()
712 … EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "", in zend_call_function()
713 EX(function_state).function->common.scope ? "::" : "", in zend_call_function()
714 EX(function_state).function->common.function_name); in zend_call_function()
737 … EX(function_state).function->common.scope ? EX(function_state).function->common.scope->name : "", in zend_call_function()
738 EX(function_state).function->common.scope ? "::" : "", in zend_call_function()
739 EX(function_state).function->common.function_name); in zend_call_function()
813 EG(scope) = EX(function_state).function->common.scope; in zend_call_function()
845 if (EX(function_state).function->common.scope) { in zend_call_function()
846 EG(scope) = EX(function_state).function->common.scope; in zend_call_function()
[all …]
H A Dzend_builtin_functions.c395 if (ex && ex->function_state.arguments) { in ZEND_FUNCTION()
424 if (!ex || !ex->function_state.arguments) { in ZEND_FUNCTION()
429 p = ex->function_state.arguments; in ZEND_FUNCTION()
452 if (!ex || !ex->function_state.arguments) { in ZEND_FUNCTION()
457 p = ex->function_state.arguments; in ZEND_FUNCTION()
2124 ptr->function_state.function->common.scope, in ZEND_FUNCTION()
2125 ptr->function_state.function) : in ZEND_FUNCTION()
2212 if (prev->function_state.function && in ZEND_FUNCTION()
2291 if (prev->function_state.function && in zend_fetch_debug_backtrace()
2313 ptr->function_state.function) : in zend_fetch_debug_backtrace()
[all …]
H A Dzend_execute.h320 void **p = ex->function_state.arguments; in zend_vm_stack_get_args_count_ex()
329 void **p = ex->function_state.arguments; in zend_vm_stack_get_arg_ex()
H A Dzend_execute.c1519 execute_data_ptr->function_state.function->internal_function.handler( in execute_internal()
1525 execute_data_ptr->function_state.function->internal_function.handler( in execute_internal()
1656 EX(prev_execute_data)->function_state.function = (zend_function*)op_array; in i_create_execute_data_from_op_array()
1657 …EX(prev_execute_data)->function_state.arguments = (void**)((char*)ZEND_VM_STACK_ELEMETS(EG(argumen… in i_create_execute_data_from_op_array()
1660 *EX(prev_execute_data)->function_state.arguments = (void*)(zend_uintptr_t)args_count; in i_create_execute_data_from_op_array()
1714 EX(function_state).function = (zend_function *) op_array; in i_create_execute_data_from_op_array()
1715 EX(function_state).arguments = NULL; in i_create_execute_data_from_op_array()
H A Dzend_vm_def.h1869 EX(function_state).function = (zend_function *) EX(op_array); in ZEND_VM_HELPER()
1870 EX(function_state).arguments = NULL; in ZEND_VM_HELPER()
1893 EX(function_state).function = (zend_function *) EX(op_array); in ZEND_VM_HELPER()
1894 EX(function_state).arguments = NULL; in ZEND_VM_HELPER()
1934 zend_function *fbc = EX(function_state).function; in ZEND_VM_HELPER()
1984 EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C); in ZEND_VM_HELPER()
1992 void **p = EX(function_state).arguments - num_args; in ZEND_VM_HELPER()
2079 EX(function_state).function = (zend_function *) EX(op_array); in ZEND_VM_HELPER()
2080 EX(function_state).arguments = NULL; in ZEND_VM_HELPER()
2841 EX(function_state).function = EX(call)->fbc;
[all …]
H A Dzend_closures.c50 zend_function *func = EG(current_execute_data)->function_state.function; in ZEND_METHOD()
H A Dzend_generators.c137 void **arguments = prev_execute_data->function_state.arguments; in zend_generator_close()
H A Dzend_object_handlers.c907 …zend_internal_function *func = (zend_internal_function *)EG(current_execute_data)->function_state.… in zend_std_call_user_call()
1122 …zend_internal_function *func = (zend_internal_function *)EG(current_execute_data)->function_state.… in zend_std_callstatic_user_call()
H A Dzend_compile.h398 zend_function_state function_state; member
H A Dzend_API.c770 zend_function *active_function = EG(current_execute_data)->function_state.function; in zend_parse_va_args()
790 zend_function *active_function = EG(current_execute_data)->function_state.function; in zend_parse_va_args()
813 zend_function *active_function = EG(current_execute_data)->function_state.function; in zend_parse_va_args()
H A Dzend_vm_execute.h418 EX(function_state).function = (zend_function *) EX(op_array); in zend_leave_helper_SPEC()
419 EX(function_state).arguments = NULL; in zend_leave_helper_SPEC()
442 EX(function_state).function = (zend_function *) EX(op_array); in zend_leave_helper_SPEC()
443 EX(function_state).arguments = NULL; in zend_leave_helper_SPEC()
483 zend_function *fbc = EX(function_state).function; in zend_do_fcall_common_helper_SPEC()
533 EX(function_state).arguments = zend_vm_stack_top(TSRMLS_C); in zend_do_fcall_common_helper_SPEC()
541 void **p = EX(function_state).arguments - num_args; in zend_do_fcall_common_helper_SPEC()
628 EX(function_state).function = (zend_function *) EX(op_array); in zend_do_fcall_common_helper_SPEC()
629 EX(function_state).arguments = NULL; in zend_do_fcall_common_helper_SPEC()
692 EX(function_state).function = EX(call)->fbc; in ZEND_DO_FCALL_BY_NAME_SPEC_HANDLER()
[all …]
/PHP-5.6/sapi/fpm/fpm/
H A Dfpm_php_trace.c77 …if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, function_state.function), &l… in fpm_php_trace_dump()
/PHP-5.6/sapi/phpdbg/
H A Dphpdbg_prompt.c1140 EX(function_state).function = (zend_function *) op_array; in phpdbg_create_execute_data()
1141 EX(function_state).arguments = NULL; in phpdbg_create_execute_data()
H A Dphpdbg_bp.c894 zend_function *function = (zend_function*) execute_data->function_state.function; in phpdbg_find_breakpoint_param()
1061 execute_data->function_state.function TSRMLS_CC))) {
/PHP-5.6/ext/com_dotnet/
H A Dcom_handlers.c258 ((zend_internal_function*)EG(current_execute_data)->function_state.function)->function_name, in PHP_FUNCTION()
H A Dcom_com.c472 …zend_internal_function *f = (zend_internal_function*)EG(current_execute_data)->function_state.func… in php_com_do_invoke_byref()
/PHP-5.6/
H A D.gdbinit54 set $fst = $t->function_state
/PHP-5.6/sapi/cli/
H A Dphp_cli.c1132 EX(function_state).function = pce->constructor; in do_cli()

Completed in 171 milliseconds