Lines Matching refs:fn_flags

2207 				internal_function->fn_flags = ZEND_ACC_PUBLIC | ptr->flags;  in zend_register_functions()
2209 internal_function->fn_flags = ptr->flags; in zend_register_functions()
2212 internal_function->fn_flags = ZEND_ACC_PUBLIC; in zend_register_functions()
2226 internal_function->fn_flags |= ZEND_ACC_RETURN_REFERENCE; in zend_register_functions()
2229 internal_function->fn_flags |= ZEND_ACC_VARIADIC; in zend_register_functions()
2245 internal_function->fn_flags |= ZEND_ACC_HAS_RETURN_TYPE; in zend_register_functions()
2298 reg_function->common.fn_flags |= ZEND_ACC_HAS_TYPE_HINTS; in zend_register_functions()
2305 (reg_function->common.fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS))) { in zend_register_functions()
2312 if (reg_function->common.fn_flags & ZEND_ACC_VARIADIC) { in zend_register_functions()
2413 ctor->common.fn_flags |= ZEND_ACC_CTOR; in zend_register_functions()
2414 if (ctor->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2417 ctor->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2420 dtor->common.fn_flags |= ZEND_ACC_DTOR; in zend_register_functions()
2421 if (dtor->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2424 dtor->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2427 if (clone->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2430 clone->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2433 if (__call->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2436 __call->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2439 if (!(__callstatic->common.fn_flags & ZEND_ACC_STATIC)) { in zend_register_functions()
2442 __callstatic->common.fn_flags |= ZEND_ACC_STATIC; in zend_register_functions()
2445 if (__tostring->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2448 __tostring->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2451 if (__get->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2454 __get->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2457 if (__set->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2460 __set->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2463 if (__unset->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2466 __unset->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2469 if (__isset->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2472 __isset->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2475 if (__debugInfo->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2480 …if (ctor && ctor->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE && ctor->common.fn_flags & ZEND_ACC_C… in zend_register_functions()
2484 …if (dtor && dtor->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE && dtor->common.fn_flags & ZEND_ACC_D… in zend_register_functions()
2488 if (clone && (clone->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE)) { in zend_register_functions()
2851 func->fn_flags &= ~(ZEND_ACC_VARIADIC | ZEND_ACC_HAS_TYPE_HINTS | ZEND_ACC_HAS_RETURN_TYPE); in zend_disable_function()
3101 if ((fcc->function_handler->op_array.fn_flags & ZEND_ACC_CHANGED) && in zend_is_callable_check_func()
3111 if (priv_fbc->common.fn_flags & ZEND_ACC_PRIVATE in zend_is_callable_check_func()
3122 if (fcc->function_handler->op_array.fn_flags & ZEND_ACC_PRIVATE) { in zend_is_callable_check_func()
3129 } else if (fcc->function_handler->common.fn_flags & ZEND_ACC_PROTECTED) { in zend_is_callable_check_func()
3151 if (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) { in zend_is_callable_check_func()
3160 … call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; in zend_is_callable_check_func()
3172 call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; in zend_is_callable_check_func()
3186 if (fcc->function_handler->common.fn_flags & ZEND_ACC_ABSTRACT) { in zend_is_callable_check_func()
3194 } else if (!fcc->object && !(fcc->function_handler->common.fn_flags & ZEND_ACC_STATIC)) { in zend_is_callable_check_func()
3197 if (fcc->function_handler->common.fn_flags & ZEND_ACC_ALLOW_STATIC) { in zend_is_callable_check_func()
3222 if (fcc->function_handler->op_array.fn_flags & ZEND_ACC_PRIVATE) { in zend_is_callable_check_func()
3233 } else if ((fcc->function_handler->common.fn_flags & ZEND_ACC_PROTECTED)) { in zend_is_callable_check_func()
3374 ((fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) || in zend_is_callable_impl()
3490 ((fcc.function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) || in zend_make_callable()