Lines Matching refs:fn_flags

474 		ZEND_ASSERT(func->common.fn_flags & ZEND_ACC_VARIADIC);  in zend_null_arg_deprecated()
2597 if (!(fptr->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE)) { in zend_check_magic_method_return_type()
2624 if (fptr->common.fn_flags & ZEND_ACC_STATIC) { in zend_check_magic_method_non_static()
2633 if (!(fptr->common.fn_flags & ZEND_ACC_STATIC)) { in zend_check_magic_method_static()
2643 if (!(fptr->common.fn_flags & ZEND_ACC_PUBLIC)) { in zend_check_magic_method_public()
2652 if (fptr->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE) { in zend_check_magic_method_no_return_type()
2763 ce->constructor->common.fn_flags |= ZEND_ACC_CTOR; in zend_add_magic_method()
2866 internal_function->fn_flags = ZEND_ACC_PUBLIC | ptr->flags; in zend_register_functions()
2868 internal_function->fn_flags = ptr->flags; in zend_register_functions()
2871 internal_function->fn_flags = ZEND_ACC_PUBLIC; in zend_register_functions()
2885 internal_function->fn_flags |= ZEND_ACC_RETURN_REFERENCE; in zend_register_functions()
2888 internal_function->fn_flags |= ZEND_ACC_VARIADIC; in zend_register_functions()
2900 internal_function->fn_flags |= ZEND_ACC_HAS_RETURN_TYPE; in zend_register_functions()
2914 !(internal_function->fn_flags & ZEND_ACC_HAS_RETURN_TYPE)) { in zend_register_functions()
2918 internal_function->fn_flags |= ZEND_ACC_HAS_RETURN_TYPE; in zend_register_functions()
2983 if (reg_function->fn_flags & ZEND_ACC_VARIADIC) { in zend_register_functions()
2994 reg_function->fn_flags |= ZEND_ACC_HAS_TYPE_HINTS; in zend_register_functions()
3010 (reg_function->fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS))) { in zend_register_functions()
3583 if ((fn->common.fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS)) && in zend_disable_class()
3701 (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) { in zend_release_fcall_info_cache()
3838 if ((fcc->function_handler->op_array.fn_flags & ZEND_ACC_CHANGED) && in zend_is_callable_check_func()
3848 if ((priv_fbc->common.fn_flags & ZEND_ACC_PRIVATE) in zend_is_callable_check_func()
3855 if (!(fcc->function_handler->common.fn_flags & ZEND_ACC_PUBLIC) && in zend_is_callable_check_func()
3861 if ((fcc->function_handler->common.fn_flags & ZEND_ACC_PRIVATE) in zend_is_callable_check_func()
3885 … call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; in zend_is_callable_check_func()
3897 call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; in zend_is_callable_check_func()
3911 if (fcc->function_handler->common.fn_flags & ZEND_ACC_ABSTRACT) { in zend_is_callable_check_func()
3916 } else if (!fcc->object && !(fcc->function_handler->common.fn_flags & ZEND_ACC_STATIC)) { in zend_is_callable_check_func()
3923 && !(fcc->function_handler->common.fn_flags & ZEND_ACC_PUBLIC)) { in zend_is_callable_check_func()
3926 if ((fcc->function_handler->common.fn_flags & ZEND_ACC_PRIVATE) in zend_is_callable_check_func()
3932 … method %s::%s()", zend_visibility_string(fcc->function_handler->common.fn_flags), ZSTR_VAL(fcc->c… in zend_is_callable_check_func()
3952 && (fcc->function_handler->common.fn_flags & ZEND_ACC_STATIC)) { in zend_is_callable_check_func()