Lines Matching refs:closure_func
1697 const zend_function *closure_func; in ZEND_METHOD() local
1704 closure_func = zend_get_closure_method_def(Z_OBJ(intern->obj)); in ZEND_METHOD()
1705 if (closure_func && closure_func->common.scope) { in ZEND_METHOD()
1706 zend_reflection_class_factory(closure_func->common.scope, return_value); in ZEND_METHOD()
1723 zend_function *closure_func; in ZEND_METHOD() local
1726 …&& Z_OBJ_HANDLER(intern->obj, get_closure)(Z_OBJ(intern->obj), &called_scope, &closure_func, &obje… in ZEND_METHOD()
1727 && closure_func && (called_scope || closure_func->common.scope)) { in ZEND_METHOD()
1728 …zend_reflection_class_factory(called_scope ? (zend_class_entry *) called_scope : closure_func->com… in ZEND_METHOD()
1738 const zend_function *closure_func; in ZEND_METHOD() local
1747 closure_func = zend_get_closure_method_def(Z_OBJ(intern->obj)); in ZEND_METHOD()
1748 if (closure_func == NULL || in ZEND_METHOD()
1749 closure_func->type != ZEND_USER_FUNCTION || in ZEND_METHOD()
1750 closure_func->op_array.static_variables == NULL) { in ZEND_METHOD()
1754 const zend_op_array *ops = &closure_func->op_array; in ZEND_METHOD()