Lines Matching refs:common

1261 		if ((mptr->common.fn_flags & ZEND_ACC_PUBLIC)  in ZEND_FUNCTION()
1263 (((mptr->common.fn_flags & ZEND_ACC_PROTECTED) && in ZEND_FUNCTION()
1264 zend_check_protected(mptr->common.scope, EG(scope))) in ZEND_FUNCTION()
1265 || ((mptr->common.fn_flags & ZEND_ACC_PRIVATE) && in ZEND_FUNCTION()
1266 EG(scope) == mptr->common.scope)))) { in ZEND_FUNCTION()
1267 size_t len = ZSTR_LEN(mptr->common.function_name); in ZEND_FUNCTION()
1271 ZVAL_STR_COPY(&method_name, mptr->common.function_name); in ZEND_FUNCTION()
1273 } else if ((mptr->common.fn_flags & ZEND_ACC_CTOR) == 0 || in ZEND_FUNCTION()
1274 mptr->common.scope == ce || in ZEND_FUNCTION()
1275 …zend_binary_strcasecmp(ZSTR_VAL(key), ZSTR_LEN(key), ZSTR_VAL(mptr->common.function_name), len) ==… in ZEND_FUNCTION()
1279 !same_name(key, mptr->common.function_name)) { in ZEND_FUNCTION()
1280 ZVAL_STR_COPY(&method_name, zend_find_alias_name(mptr->common.scope, key)); in ZEND_FUNCTION()
1283 ZVAL_STR_COPY(&method_name, mptr->common.function_name); in ZEND_FUNCTION()
1327 if (func->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) { in ZEND_FUNCTION()
1329 RETVAL_BOOL(func->common.scope == zend_ce_closure in ZEND_FUNCTION()
1333 zend_string_release(func->common.function_name); in ZEND_FUNCTION()
1886 if (strstr(disable_functions, func->common.function_name->val) == NULL) { in copy_function_name()
2338 if ((!skip->func || !ZEND_USER_CODE(skip->func->common.type)) && in ZEND_FUNCTION()
2341 ZEND_USER_CODE(skip->prev_execute_data->func->common.type) && in ZEND_FUNCTION()
2350 if (skip->func && ZEND_USER_CODE(skip->func->common.type)) { in ZEND_FUNCTION()
2373 if (func->common.scope && func->common.scope->trait_aliases) { in ZEND_FUNCTION()
2374 … zend_function_name = zend_resolve_method_name(object ? object->ce : func->common.scope, func); in ZEND_FUNCTION()
2376 zend_function_name = func->common.function_name; in ZEND_FUNCTION()
2390 if (func->common.scope) { in ZEND_FUNCTION()
2391 class_name = func->common.scope->name; in ZEND_FUNCTION()
2399 } else if (func->common.scope) { in ZEND_FUNCTION()
2400 class_name = func->common.scope->name; in ZEND_FUNCTION()
2415 …if (!ptr->func || !ZEND_USER_CODE(ptr->func->common.type) || ptr->opline->opcode != ZEND_INCLUDE_O… in ZEND_FUNCTION()
2456 && !func->common.scope in ZEND_FUNCTION()
2475 !ZEND_USER_CODE(prev_call->func->common.type)) { in ZEND_FUNCTION()
2479 if (prev->func && ZEND_USER_CODE(prev->func->common.type)) { in ZEND_FUNCTION()
2516 if (!ptr->func || !ZEND_USER_CODE(ptr->func->common.type)) { in zend_fetch_debug_backtrace()
2528 if (ptr->func && ZEND_USER_CODE(ptr->func->common.type) && (ptr->opline->opcode == ZEND_NEW)) { in zend_fetch_debug_backtrace()
2547 if ((!skip->func || !ZEND_USER_CODE(skip->func->common.type)) && in zend_fetch_debug_backtrace()
2550 ZEND_USER_CODE(skip->prev_execute_data->func->common.type) && in zend_fetch_debug_backtrace()
2559 if (skip->func && ZEND_USER_CODE(skip->func->common.type)) { in zend_fetch_debug_backtrace()
2583 !ZEND_USER_CODE(prev_call->func->common.type) && in zend_fetch_debug_backtrace()
2584 !(prev_call->func->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) { in zend_fetch_debug_backtrace()
2587 if (prev->func && ZEND_USER_CODE(prev->func->common.type)) { in zend_fetch_debug_backtrace()
2603 function_name = (func->common.scope && in zend_fetch_debug_backtrace()
2604 func->common.scope->trait_aliases) ? in zend_fetch_debug_backtrace()
2606 (object ? object->ce : func->common.scope), func) : in zend_fetch_debug_backtrace()
2607 func->common.function_name; in zend_fetch_debug_backtrace()
2617 if (func->common.scope) { in zend_fetch_debug_backtrace()
2618 …add_assoc_str_ex(&stack_frame, "class", sizeof("class")-1, zend_string_copy(func->common.scope->na… in zend_fetch_debug_backtrace()
2633 } else if (func->common.scope) { in zend_fetch_debug_backtrace()
2634 …add_assoc_str_ex(&stack_frame, "class", sizeof("class")-1, zend_string_copy(func->common.scope->na… in zend_fetch_debug_backtrace()
2650 …if (!ptr->func || !ZEND_USER_CODE(ptr->func->common.type) || ptr->opline->opcode != ZEND_INCLUDE_O… in zend_fetch_debug_backtrace()
2776 if (zif->common.type == ZEND_INTERNAL_FUNCTION in ZEND_FUNCTION()
2782 add_next_index_str(return_value, zend_string_copy(zif->common.function_name)); in ZEND_FUNCTION()