Lines Matching refs:fn_flags

74 	zend_bool is_fake_closure = (func->common.fn_flags & ZEND_ACC_FAKE_CLOSURE) != 0;  in zend_valid_closure_binding()
76 if (func->common.fn_flags & ZEND_ACC_STATIC) { in zend_valid_closure_binding()
90 } else if (!(func->common.fn_flags & ZEND_ACC_STATIC) && func->common.scope in zend_valid_closure_binding()
150 if (fci_cache.function_handler->common.fn_flags & ZEND_ACC_GENERATOR) { in ZEND_METHOD()
175 if (fci_cache.function_handler->common.fn_flags & ZEND_ACC_GENERATOR) { in ZEND_METHOD()
273 if (mptr->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) { in zend_create_closure_from_callable()
357 invoke->internal_function.fn_flags = in zend_get_closure_invoke_method()
358 ZEND_ACC_PUBLIC | ZEND_ACC_CALL_VIA_HANDLER | (closure->func.common.fn_flags & keep_flags); in zend_get_closure_invoke_method()
359 …if (closure->func.type != ZEND_INTERNAL_FUNCTION || (closure->func.common.fn_flags & ZEND_ACC_USER… in zend_get_closure_invoke_method()
360 invoke->internal_function.fn_flags |= in zend_get_closure_invoke_method()
437 if (closure->func.op_array.fn_flags & ZEND_ACC_NO_RT_ARENA) { in zend_closure_free_storage()
497 …zend_bool zstr_args = (closure->func.type == ZEND_USER_FUNCTION) || (closure->func.common.fn_flags in zend_closure_get_debug_info()
517 (closure->func.common.fn_flags & ZEND_ACC_VARIADIC))) { in zend_closure_get_debug_info()
523 if (closure->func.common.fn_flags & ZEND_ACC_VARIADIC) { in zend_closure_get_debug_info()
658 closure->func.common.fn_flags |= ZEND_ACC_CLOSURE; in zend_create_closure()
667 || (func->common.fn_flags & ZEND_ACC_NO_RT_ARENA) in zend_create_closure()
669 if (!func->op_array.run_time_cache && (func->common.fn_flags & ZEND_ACC_CLOSURE)) { in zend_create_closure()
678 closure->func.op_array.fn_flags |= ZEND_ACC_NO_RT_ARENA; in zend_create_closure()
688 closure->func.common.fn_flags |= ZEND_ACC_CLOSURE; in zend_create_closure()
712 closure->func.common.fn_flags |= ZEND_ACC_PUBLIC; in zend_create_closure()
713 …if (this_ptr && Z_TYPE_P(this_ptr) == IS_OBJECT && (closure->func.common.fn_flags & ZEND_ACC_STATI… in zend_create_closure()
727 closure->func.common.fn_flags |= ZEND_ACC_FAKE_CLOSURE; in zend_create_fake_closure()