Lines Matching refs:object_ptr

2688 			if (!fcc->object_ptr) {  in zend_is_callable_check_class()
2689 fcc->object_ptr = EG(This); in zend_is_callable_check_class()
2702 if (!fcc->object_ptr) { in zend_is_callable_check_class()
2703 fcc->object_ptr = EG(This); in zend_is_callable_check_class()
2715 if (!fcc->object_ptr) { in zend_is_callable_check_class()
2716 fcc->object_ptr = EG(This); in zend_is_callable_check_class()
2725 if (scope && !fcc->object_ptr && EG(This) && in zend_is_callable_check_class()
2728 fcc->object_ptr = EG(This); in zend_is_callable_check_class()
2729 fcc->called_scope = Z_OBJCE_P(fcc->object_ptr); in zend_is_callable_check_class()
2731 fcc->called_scope = fcc->object_ptr ? Z_OBJCE_P(fcc->object_ptr) : fcc->calling_scope; in zend_is_callable_check_class()
2850 ((fcc->object_ptr && fcc->calling_scope->__call) || in zend_is_callable_check_func()
2851 (!fcc->object_ptr && fcc->calling_scope->__callstatic)))) { in zend_is_callable_check_func()
2853 …if (!zend_check_private(fcc->function_handler, fcc->object_ptr ? Z_OBJCE_P(fcc->object_ptr) : EG(s… in zend_is_callable_check_func()
2868 if (fcc->object_ptr && fcc->calling_scope == ce_org) { in zend_is_callable_check_func()
2881 } else if (Z_OBJ_HT_P(fcc->object_ptr)->get_method) { in zend_is_callable_check_func()
2882 …fcc->function_handler = Z_OBJ_HT_P(fcc->object_ptr)->get_method(&fcc->object_ptr, mname, mlen, NUL… in zend_is_callable_check_func()
2908 if (call_via_handler && !fcc->object_ptr && EG(This) && in zend_is_callable_check_func()
2911 fcc->object_ptr = EG(This); in zend_is_callable_check_func()
2919 if (!fcc->object_ptr && (fcc->function_handler->common.fn_flags & ZEND_ACC_ABSTRACT)) { in zend_is_callable_check_func()
2926 } else if (!fcc->object_ptr && !(fcc->function_handler->common.fn_flags & ZEND_ACC_STATIC)) { in zend_is_callable_check_func()
2941 fcc->object_ptr = EG(This); in zend_is_callable_check_func()
2963 …if (!zend_check_private(fcc->function_handler, fcc->object_ptr ? Z_OBJCE_P(fcc->object_ptr) : EG(s… in zend_is_callable_check_func()
2994 if (fcc->object_ptr) { in zend_is_callable_check_func()
2995 fcc->called_scope = Z_OBJCE_P(fcc->object_ptr); in zend_is_callable_check_func()
3004 ZEND_API zend_bool zend_is_callable_ex(zval *callable, zval *object_ptr, uint check_flags, char **c… in zend_is_callable_ex() argument
3028 fcc->object_ptr = NULL; in zend_is_callable_ex()
3030 if (object_ptr && Z_TYPE_P(object_ptr) != IS_OBJECT) { in zend_is_callable_ex()
3031 object_ptr = NULL; in zend_is_callable_ex()
3033 if (object_ptr && in zend_is_callable_ex()
3035 !EG(objects_store).object_buckets[Z_OBJ_HANDLE_P(object_ptr)].valid)) { in zend_is_callable_ex()
3041 if (object_ptr) { in zend_is_callable_ex()
3042 fcc->object_ptr = object_ptr; in zend_is_callable_ex()
3043 fcc->calling_scope = Z_OBJCE_P(object_ptr); in zend_is_callable_ex()
3122 fcc->object_ptr = *obj; in zend_is_callable_ex()
3175 …_closure)(callable, &fcc->calling_scope, &fcc->function_handler, &fcc->object_ptr TSRMLS_CC) == SU… in zend_is_callable_ex()
3246 fci->object_ptr = fcc->object_ptr; in zend_fcall_info_init()