Lines Matching refs:fn_flags

501 		ZEND_ASSERT(func->common.fn_flags & ZEND_ACC_VARIADIC);  in zend_null_arg_deprecated()
2696 if (!(fptr->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE)) { in zend_check_magic_method_return_type()
2723 if (fptr->common.fn_flags & ZEND_ACC_STATIC) { in zend_check_magic_method_non_static()
2732 if (!(fptr->common.fn_flags & ZEND_ACC_STATIC)) { in zend_check_magic_method_static()
2742 if (!(fptr->common.fn_flags & ZEND_ACC_PUBLIC)) { in zend_check_magic_method_public()
2751 if (fptr->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE) { in zend_check_magic_method_no_return_type()
2862 ce->constructor->common.fn_flags |= ZEND_ACC_CTOR; in zend_add_magic_method()
2971 internal_function->fn_flags = ZEND_ACC_PUBLIC | ptr->flags; in zend_register_functions()
2973 internal_function->fn_flags = ptr->flags; in zend_register_functions()
2976 internal_function->fn_flags = ZEND_ACC_PUBLIC; in zend_register_functions()
2990 internal_function->fn_flags |= ZEND_ACC_RETURN_REFERENCE; in zend_register_functions()
2993 internal_function->fn_flags |= ZEND_ACC_VARIADIC; in zend_register_functions()
3005 internal_function->fn_flags |= ZEND_ACC_HAS_RETURN_TYPE; in zend_register_functions()
3019 !(internal_function->fn_flags & ZEND_ACC_HAS_RETURN_TYPE)) { in zend_register_functions()
3023 internal_function->fn_flags |= ZEND_ACC_HAS_RETURN_TYPE; in zend_register_functions()
3088 if (reg_function->fn_flags & ZEND_ACC_VARIADIC) { in zend_register_functions()
3099 reg_function->fn_flags |= ZEND_ACC_HAS_TYPE_HINTS; in zend_register_functions()
3115 (reg_function->fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS))) { in zend_register_functions()
3721 if ((fn->common.fn_flags & (ZEND_ACC_HAS_RETURN_TYPE|ZEND_ACC_HAS_TYPE_HINTS)) && in zend_disable_class()
3839 (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) { in zend_release_fcall_info_cache()
3976 if ((fcc->function_handler->op_array.fn_flags & ZEND_ACC_CHANGED) && in zend_is_callable_check_func()
3986 if ((priv_fbc->common.fn_flags & ZEND_ACC_PRIVATE) in zend_is_callable_check_func()
3993 if (!(fcc->function_handler->common.fn_flags & ZEND_ACC_PUBLIC) && in zend_is_callable_check_func()
3999 if ((fcc->function_handler->common.fn_flags & ZEND_ACC_PRIVATE) in zend_is_callable_check_func()
4023 … call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; in zend_is_callable_check_func()
4035 call_via_handler = (fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; in zend_is_callable_check_func()
4049 if (fcc->function_handler->common.fn_flags & ZEND_ACC_ABSTRACT) { in zend_is_callable_check_func()
4054 } else if (!fcc->object && !(fcc->function_handler->common.fn_flags & ZEND_ACC_STATIC)) { in zend_is_callable_check_func()
4061 && !(fcc->function_handler->common.fn_flags & ZEND_ACC_PUBLIC)) { in zend_is_callable_check_func()
4064 if ((fcc->function_handler->common.fn_flags & ZEND_ACC_PRIVATE) in zend_is_callable_check_func()
4070 … method %s::%s()", zend_visibility_string(fcc->function_handler->common.fn_flags), ZSTR_VAL(fcc->c… in zend_is_callable_check_func()
4090 && (fcc->function_handler->common.fn_flags & ZEND_ACC_STATIC)) { in zend_is_callable_check_func()