Lines Matching refs:common

1070 		if ((mptr->common.fn_flags & ZEND_ACC_PUBLIC)   in ZEND_FUNCTION()
1072 (((mptr->common.fn_flags & ZEND_ACC_PROTECTED) && in ZEND_FUNCTION()
1073 zend_check_protected(mptr->common.scope, EG(scope))) in ZEND_FUNCTION()
1074 || ((mptr->common.fn_flags & ZEND_ACC_PRIVATE) && in ZEND_FUNCTION()
1075 EG(scope) == mptr->common.scope)))) { in ZEND_FUNCTION()
1079 uint len = strlen(mptr->common.function_name); in ZEND_FUNCTION()
1084 ZVAL_STRINGL(method_name, mptr->common.function_name, len, 1); in ZEND_FUNCTION()
1086 } else if ((mptr->common.fn_flags & ZEND_ACC_CTOR) == 0 || in ZEND_FUNCTION()
1087 mptr->common.scope == ce || in ZEND_FUNCTION()
1088 zend_binary_strcasecmp(key, key_len-1, mptr->common.function_name, len) == 0) { in ZEND_FUNCTION()
1093 !same_name(key, mptr->common.function_name, len))) { in ZEND_FUNCTION()
1095 …ZVAL_STRINGL(method_name, zend_find_alias_name(mptr->common.scope, key, key_len - 1), key_len - 1,… in ZEND_FUNCTION()
1099 ZVAL_STRINGL(method_name, mptr->common.function_name, len, 1); in ZEND_FUNCTION()
1146 && (func->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0 in ZEND_FUNCTION()
1149 RETVAL_BOOL((func->common.scope == zend_ce_closure in ZEND_FUNCTION()
2124 function_name = (ptr->function_state.function->common.scope && in ZEND_FUNCTION()
2125 ptr->function_state.function->common.scope->trait_aliases) ? in ZEND_FUNCTION()
2129 ptr->function_state.function->common.scope, in ZEND_FUNCTION()
2131 ptr->function_state.function->common.function_name; in ZEND_FUNCTION()
2135 if (ptr->function_state.function->common.scope) { in ZEND_FUNCTION()
2136 class_name = ptr->function_state.function->common.scope->name; in ZEND_FUNCTION()
2148 } else if (ptr->function_state.function->common.scope) { in ZEND_FUNCTION()
2149 class_name = ptr->function_state.function->common.scope->name; in ZEND_FUNCTION()
2218 prev->function_state.function->common.type != ZEND_USER_FUNCTION) { in ZEND_FUNCTION()
2297 prev->function_state.function->common.type != ZEND_USER_FUNCTION && in zend_fetch_debug_backtrace()
2298 !(prev->function_state.function->common.type == ZEND_INTERNAL_FUNCTION && in zend_fetch_debug_backtrace()
2299 (prev->function_state.function->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER))) { in zend_fetch_debug_backtrace()
2312 function_name = (ptr->function_state.function->common.scope && in zend_fetch_debug_backtrace()
2313 ptr->function_state.function->common.scope->trait_aliases) ? in zend_fetch_debug_backtrace()
2317 ptr->function_state.function->common.scope, in zend_fetch_debug_backtrace()
2319 ptr->function_state.function->common.function_name; in zend_fetch_debug_backtrace()
2325 if (ptr->function_state.function->common.scope) { in zend_fetch_debug_backtrace()
2326 …stack_frame, "class", sizeof("class"), (char*)ptr->function_state.function->common.scope->name, 1); in zend_fetch_debug_backtrace()
2341 } else if (ptr->function_state.function->common.scope) { in zend_fetch_debug_backtrace()
2342 …stack_frame, "class", sizeof("class"), (char*)ptr->function_state.function->common.scope->name, 1); in zend_fetch_debug_backtrace()
2483 if (zif->common.type==ZEND_INTERNAL_FUNCTION in ZEND_FUNCTION()
2489 add_next_index_string(return_value, zif->common.function_name, 1); in ZEND_FUNCTION()