Lines Matching refs:fn_flags

2166 				internal_function->fn_flags = ZEND_ACC_PUBLIC | ptr->flags;  in zend_register_functions()
2168 internal_function->fn_flags = ptr->flags; in zend_register_functions()
2171 internal_function->fn_flags = ZEND_ACC_PUBLIC; in zend_register_functions()
2185 internal_function->fn_flags |= ZEND_ACC_RETURN_REFERENCE; in zend_register_functions()
2188 internal_function->fn_flags |= ZEND_ACC_VARIADIC; in zend_register_functions()
2200 internal_function->fn_flags |= ZEND_ACC_HAS_RETURN_TYPE; in zend_register_functions()
2255 reg_function->common.fn_flags |= ZEND_ACC_HAS_TYPE_HINTS; in zend_register_functions()
2338 ctor->common.fn_flags |= ZEND_ACC_CTOR; in zend_register_functions()
2339 if (ctor->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2342 ctor->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2345 dtor->common.fn_flags |= ZEND_ACC_DTOR; in zend_register_functions()
2346 if (dtor->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2349 dtor->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2352 clone->common.fn_flags |= ZEND_ACC_CLONE; in zend_register_functions()
2353 if (clone->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2356 clone->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2359 if (__call->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2362 __call->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2365 if (!(__callstatic->common.fn_flags & ZEND_ACC_STATIC)) { in zend_register_functions()
2368 __callstatic->common.fn_flags |= ZEND_ACC_STATIC; in zend_register_functions()
2371 if (__tostring->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2374 __tostring->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2377 if (__get->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2380 __get->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2383 if (__set->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2386 __set->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2389 if (__unset->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2392 __unset->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2395 if (__isset->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2398 __isset->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2401 if (__debugInfo->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2406 …if (ctor && ctor->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE && ctor->common.fn_flags & ZEND_ACC_C… in zend_register_functions()
2410 …if (dtor && dtor->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE && dtor->common.fn_flags & ZEND_ACC_D… in zend_register_functions()
2414 if (clone && (clone->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE)) { in zend_register_functions()
2775 func->fn_flags &= ~(ZEND_ACC_VARIADIC | ZEND_ACC_HAS_TYPE_HINTS); in zend_disable_function()
3024 if ((fcc->function_handler->op_array.fn_flags & ZEND_ACC_CHANGED) && in zend_is_callable_check_func()
3032 && priv_fbc->common.fn_flags & ZEND_ACC_PRIVATE in zend_is_callable_check_func()
3042 if (fcc->function_handler->op_array.fn_flags & ZEND_ACC_PRIVATE) { in zend_is_callable_check_func()
3049 } else if (fcc->function_handler->common.fn_flags & ZEND_ACC_PROTECTED) { in zend_is_callable_check_func()
3071 if (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) { in zend_is_callable_check_func()
3080 … call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; in zend_is_callable_check_func()
3092 call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; in zend_is_callable_check_func()
3106 if (fcc->function_handler->common.fn_flags & ZEND_ACC_ABSTRACT) { in zend_is_callable_check_func()
3114 } else if (!fcc->object && !(fcc->function_handler->common.fn_flags & ZEND_ACC_STATIC)) { in zend_is_callable_check_func()
3117 if (fcc->function_handler->common.fn_flags & ZEND_ACC_ALLOW_STATIC) { in zend_is_callable_check_func()
3142 if (fcc->function_handler->op_array.fn_flags & ZEND_ACC_PRIVATE) { in zend_is_callable_check_func()
3153 } else if ((fcc->function_handler->common.fn_flags & ZEND_ACC_PROTECTED)) { in zend_is_callable_check_func()
3242 ((fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) || in zend_is_callable_ex()
3330 ((fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) || in zend_is_callable_ex()
3407 ((fcc.function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) || in zend_make_callable()