Lines Matching refs:obj_ce
35 ZEND_API zval* zend_call_method(zval *object, zend_class_entry *obj_ce, zend_function **fn_proxy, c… in zend_call_method() argument
56 if (!fn_proxy && !obj_ce) { in zend_call_method()
67 if (!obj_ce) { in zend_call_method()
68 obj_ce = object ? Z_OBJCE_P(object) : NULL; in zend_call_method()
71 HashTable *function_table = obj_ce ? &obj_ce->function_table : EG(function_table); in zend_call_method()
76 …OR, "Couldn't find implementation for method %s%s%s", obj_ce ? ZSTR_VAL(obj_ce->name) : "", obj_ce… in zend_call_method()
85 fcic.calling_scope = obj_ce; in zend_call_method()
91 if (obj_ce && in zend_call_method()
93 !instanceof_function(called_scope, obj_ce))) { in zend_call_method()
94 fcic.called_scope = obj_ce; in zend_call_method()
104 if (!obj_ce) { in zend_call_method()
105 obj_ce = object ? Z_OBJCE_P(object) : NULL; in zend_call_method()
108 …eturn(E_CORE_ERROR, "Couldn't execute method %s%s%s", obj_ce ? ZSTR_VAL(obj_ce->name) : "", obj_ce… in zend_call_method()