Lines Matching refs:common
177 EG(trampoline).common.function_name = NULL; in init_executor()
425 ZEND_ASSERT(EG(trampoline).common.function_name == NULL || CG(unclean_shutdown)); in shutdown_executor()
451 zend_class_entry *ce = func->common.scope; in get_active_class_name()
479 zend_string *function_name = func->common.function_name; in get_active_function_name()
489 return ZSTR_VAL(func->common.function_name); in get_active_function_name()
507 if (func->common.scope && func->common.function_name) { in get_function_or_method_name()
508 return zend_create_member_string(func->common.scope->name, func->common.function_name); in get_function_or_method_name()
511 …return func->common.function_name ? zend_string_copy(func->common.function_name) : zend_string_ini… in get_function_or_method_name()
531 if (!func || func->common.num_args < arg_num) { in get_function_arg_name()
535 if (func->type == ZEND_USER_FUNCTION || (func->common.fn_flags & ZEND_ACC_USER_ARG_INFO)) { in get_function_arg_name()
536 return ZSTR_VAL(func->common.arg_info[arg_num - 1].name); in get_function_arg_name()
538 return ((zend_internal_arg_info*) func->common.arg_info)[arg_num - 1].name; in get_function_arg_name()
599 } else if (ex->func && (ZEND_USER_CODE(ex->func->type) || ex->func->common.scope)) { in zend_get_executed_scope()
600 return ex->func->common.scope; in zend_get_executed_scope()
694 ZEND_USER_CODE(EG(current_execute_data)->func->common.type) && in zend_call_function()
733 if ((func->common.fn_flags & ZEND_ACC_STATIC) || !fci_cache->object) { in zend_call_function()
746 if (UNEXPECTED(func->common.fn_flags & ZEND_ACC_DEPRECATED)) { in zend_call_function()
791 !(func->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) { in zend_call_function()
845 !(func->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) { in zend_call_function()
880 if (func->common.fn_flags & ZEND_ACC_FAKE_CLOSURE) { in zend_call_function()
889 int call_via_handler = (func->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; in zend_call_function()
903 int call_via_handler = (func->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; in zend_call_function()
954 ZEND_USER_CODE(EG(current_execute_data)->func->common.type)) { in zend_call_function()
989 fn->common.scope ? ZSTR_VAL(fn->common.scope->name) : "", in zend_call_known_function()
990 fn->common.scope ? "::" : "", ZSTR_VAL(fn->common.function_name)); in zend_call_known_function()
1137 if (ex->func->type != ZEND_INTERNAL_FUNCTION || ex->func->common.scope) { in zend_get_called_scope()
1153 if (ex->func->type != ZEND_INTERNAL_FUNCTION || ex->func->common.scope) { in zend_get_this_object()
1564 while (ex && (!ex->func || !ZEND_USER_CODE(ex->func->common.type))) { in zend_rebuild_symbol_table()
1668 while (execute_data && (!execute_data->func || !ZEND_USER_CODE(execute_data->func->common.type))) { in zend_set_local_var()
1711 while (execute_data && (!execute_data->func || !ZEND_USER_CODE(execute_data->func->common.type))) { in zend_set_local_var_str()