Lines Matching refs:fn_flags

2170 				internal_function->fn_flags = ZEND_ACC_PUBLIC | ptr->flags;  in zend_register_functions()
2172 internal_function->fn_flags = ptr->flags; in zend_register_functions()
2175 internal_function->fn_flags = ZEND_ACC_PUBLIC; in zend_register_functions()
2189 internal_function->fn_flags |= ZEND_ACC_RETURN_REFERENCE; in zend_register_functions()
2192 internal_function->fn_flags |= ZEND_ACC_VARIADIC; in zend_register_functions()
2204 internal_function->fn_flags |= ZEND_ACC_HAS_RETURN_TYPE; in zend_register_functions()
2259 reg_function->common.fn_flags |= ZEND_ACC_HAS_TYPE_HINTS; in zend_register_functions()
2342 ctor->common.fn_flags |= ZEND_ACC_CTOR; in zend_register_functions()
2343 if (ctor->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2346 ctor->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2349 dtor->common.fn_flags |= ZEND_ACC_DTOR; in zend_register_functions()
2350 if (dtor->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2353 dtor->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2356 clone->common.fn_flags |= ZEND_ACC_CLONE; in zend_register_functions()
2357 if (clone->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2360 clone->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2363 if (__call->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2366 __call->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2369 if (!(__callstatic->common.fn_flags & ZEND_ACC_STATIC)) { in zend_register_functions()
2372 __callstatic->common.fn_flags |= ZEND_ACC_STATIC; in zend_register_functions()
2375 if (__tostring->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2378 __tostring->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2381 if (__get->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2384 __get->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2387 if (__set->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2390 __set->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2393 if (__unset->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2396 __unset->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2399 if (__isset->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2402 __isset->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC; in zend_register_functions()
2405 if (__debugInfo->common.fn_flags & ZEND_ACC_STATIC) { in zend_register_functions()
2410 …if (ctor && ctor->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE && ctor->common.fn_flags & ZEND_ACC_C… in zend_register_functions()
2414 …if (dtor && dtor->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE && dtor->common.fn_flags & ZEND_ACC_D… in zend_register_functions()
2418 …if (clone && clone->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE && dtor->common.fn_flags & ZEND_ACC… in zend_register_functions()
2779 func->fn_flags &= ~(ZEND_ACC_VARIADIC | ZEND_ACC_HAS_TYPE_HINTS); in zend_disable_function()
3027 if ((fcc->function_handler->op_array.fn_flags & ZEND_ACC_CHANGED) && in zend_is_callable_check_func()
3033 && 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()
3048 } else if (fcc->function_handler->common.fn_flags & ZEND_ACC_PROTECTED) { in zend_is_callable_check_func()
3069 if (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) { in zend_is_callable_check_func()
3078 … call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; in zend_is_callable_check_func()
3090 call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; in zend_is_callable_check_func()
3104 if (fcc->function_handler->common.fn_flags & ZEND_ACC_ABSTRACT) { in zend_is_callable_check_func()
3112 } else if (!fcc->object && !(fcc->function_handler->common.fn_flags & ZEND_ACC_STATIC)) { in zend_is_callable_check_func()
3115 if (fcc->function_handler->common.fn_flags & ZEND_ACC_ALLOW_STATIC) { in zend_is_callable_check_func()
3140 if (fcc->function_handler->op_array.fn_flags & ZEND_ACC_PRIVATE) { in zend_is_callable_check_func()
3150 } else if ((fcc->function_handler->common.fn_flags & ZEND_ACC_PROTECTED)) { in zend_is_callable_check_func()
3238 ((fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) || in zend_is_callable_ex()
3326 ((fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) || in zend_is_callable_ex()
3403 ((fcc.function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) || in zend_make_callable()