Lines Matching refs:fn_flags

198 		&& (fptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE))  in _copy_function()
215 && (fptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) in _free_function()
432 if ((mptr->common.fn_flags & ZEND_ACC_STATIC) in _class_string()
433 && ((mptr->common.fn_flags & ZEND_ACC_PRIVATE) == 0 || mptr->common.scope == ce)) in _class_string()
446 if ((mptr->common.fn_flags & ZEND_ACC_STATIC) in _class_string()
447 && ((mptr->common.fn_flags & ZEND_ACC_PRIVATE) == 0 || mptr->common.scope == ce)) in _class_string()
504 if ((mptr->common.fn_flags & ZEND_ACC_STATIC) == 0 in _class_string()
505 && ((mptr->common.fn_flags & ZEND_ACC_PRIVATE) == 0 || mptr->common.scope == ce)) in _class_string()
660 && !(fptr->common.fn_flags & ZEND_ACC_USER_ARG_INFO); in has_internal_arg_info()
723 if (fptr->common.fn_flags & ZEND_ACC_VARIADIC) { in _function_parameter_string()
782 …smart_str_append_printf(str, fptr->common.fn_flags & ZEND_ACC_CLOSURE ? "Closure [ " : (fptr->comm… in _function_string()
784 if (fptr->common.fn_flags & ZEND_ACC_DEPRECATED) { in _function_string()
797 …if (fptr->common.scope != overwrites->common.scope && !(overwrites->common.fn_flags & ZEND_ACC_PRI… in _function_string()
807 if (fptr->common.fn_flags & ZEND_ACC_CTOR) { in _function_string()
812 if (fptr->common.fn_flags & ZEND_ACC_ABSTRACT) { in _function_string()
815 if (fptr->common.fn_flags & ZEND_ACC_FINAL) { in _function_string()
818 if (fptr->common.fn_flags & ZEND_ACC_STATIC) { in _function_string()
824 switch (fptr->common.fn_flags & ZEND_ACC_PPP_MASK) { in _function_string()
843 if (fptr->op_array.fn_flags & ZEND_ACC_RETURN_REFERENCE) { in _function_string()
856 if (fptr->common.fn_flags & ZEND_ACC_CLOSURE) { in _function_string()
861 if ((fptr->op_array.fn_flags & ZEND_ACC_HAS_RETURN_TYPE)) { in _function_string()
1249 RETURN_BOOL(mptr->common.fn_flags & mask); in _function_check_flag()
1495 if (param->fptr->common.fn_flags & ZEND_ACC_USER_ARG_INFO) { in get_parameter_default()
1658 RETURN_BOOL(fptr->common.fn_flags & ZEND_ACC_CLOSURE); in ZEND_METHOD()
1751 if (ops->fn_flags & ZEND_ACC_VARIADIC) { in ZEND_METHOD()
1911 …if (fptr->common.scope && (fptr->common.fn_flags & (ZEND_ACC_CLOSURE|ZEND_ACC_FAKE_CLOSURE)) != ZE… in ZEND_METHOD()
2072 RETURN_BOOL((fptr->op_array.fn_flags & ZEND_ACC_RETURN_REFERENCE) != 0); in ZEND_METHOD()
2090 if (fptr->common.fn_flags & ZEND_ACC_VARIADIC) { in ZEND_METHOD()
2130 if (fptr->common.fn_flags & ZEND_ACC_VARIADIC) { in ZEND_METHOD()
2325 if (ex->func->common.fn_flags & ZEND_ACC_CLOSURE) { in ZEND_METHOD()
2489 if (fptr->common.fn_flags & ZEND_ACC_VARIADIC) { in ZEND_METHOD()
2552 if (fptr->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) { in ZEND_METHOD()
2870 RETURN_BOOL(!(param->fptr->common.fn_flags & ZEND_ACC_USER_ARG_INFO) in ZEND_METHOD()
3290 if (mptr->common.fn_flags & ZEND_ACC_STATIC) { in ZEND_METHOD()
3305 (mptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) in ZEND_METHOD()
3330 if (mptr->common.fn_flags & ZEND_ACC_ABSTRACT) { in reflection_method_invoke()
3354 if (mptr->common.fn_flags & ZEND_ACC_STATIC) { in reflection_method_invoke()
3391 if ((mptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) { in reflection_method_invoke()
3561 …RETVAL_BOOL((fptr->op_array.fn_flags & ZEND_ACC_HAS_RETURN_TYPE) && !ZEND_ARG_TYPE_IS_TENTATIVE(&f… in ZEND_METHOD()
3577 …if (!(fptr->op_array.fn_flags & ZEND_ACC_HAS_RETURN_TYPE) || ZEND_ARG_TYPE_IS_TENTATIVE(&fptr->com… in ZEND_METHOD()
3597 …RETVAL_BOOL(fptr->op_array.fn_flags & ZEND_ACC_HAS_RETURN_TYPE && ZEND_ARG_TYPE_IS_TENTATIVE(&fptr… in ZEND_METHOD()
3613 …if (!(fptr->op_array.fn_flags & ZEND_ACC_HAS_RETURN_TYPE) || !ZEND_ARG_TYPE_IS_TENTATIVE(&fptr->co… in ZEND_METHOD()
3634 …RETURN_BOOL((mptr->common.fn_flags & ZEND_ACC_CTOR) && intern->ce->constructor && intern->ce->cons… in ZEND_METHOD()
3666 RETURN_LONG((mptr->common.fn_flags & keep_flags)); in ZEND_METHOD()
4412 if ((mptr->common.fn_flags & ZEND_ACC_PRIVATE) && mptr->common.scope != ce) { in _addmethod()
4416 if (mptr->common.fn_flags & filter) { in _addmethod()
4805 RETURN_BOOL(ce->constructor->common.fn_flags & ZEND_ACC_PUBLIC); in ZEND_METHOD()
4825 RETURN_BOOL(ce->clone->common.fn_flags & ZEND_ACC_PUBLIC); in ZEND_METHOD()
4831 RETURN_BOOL(ce->clone->common.fn_flags & ZEND_ACC_PUBLIC); in ZEND_METHOD()
4934 if (!(constructor->common.fn_flags & ZEND_ACC_PUBLIC)) { in ZEND_METHOD()
5009 if (!(constructor->common.fn_flags & ZEND_ACC_PUBLIC)) { in ZEND_METHOD()
6569 if (!(ctor->common.fn_flags & ZEND_ACC_PUBLIC)) { in call_attribute_constructor()
6601 call->func->op_array.fn_flags = in call_attribute_constructor()
6603 call->func->op_array.fn_flags |= ZEND_ACC_CALL_VIA_TRAMPOLINE; in call_attribute_constructor()