Lines Matching refs:object

35 static void incomplete_class_message(zval *object, int error_type)  in incomplete_class_message()  argument
39 class_name = php_lookup_class_name(object); in incomplete_class_message()
50 static zval *incomplete_class_get_property(zval *object, zval *member, int type, void **cache_slot,… in incomplete_class_get_property() argument
52 incomplete_class_message(object, E_NOTICE); in incomplete_class_get_property()
63 static zval *incomplete_class_write_property(zval *object, zval *member, zval *value, void **cache_… in incomplete_class_write_property() argument
65 incomplete_class_message(object, E_NOTICE); in incomplete_class_write_property()
70 static zval *incomplete_class_get_property_ptr_ptr(zval *object, zval *member, int type, void **cac… in incomplete_class_get_property_ptr_ptr() argument
72 incomplete_class_message(object, E_NOTICE); in incomplete_class_get_property_ptr_ptr()
77 static void incomplete_class_unset_property(zval *object, zval *member, void **cache_slot) /* {{{ */ in incomplete_class_unset_property() argument
79 incomplete_class_message(object, E_NOTICE); in incomplete_class_unset_property()
83 static int incomplete_class_has_property(zval *object, zval *member, int check_empty, void **cache_… in incomplete_class_has_property() argument
85 incomplete_class_message(object, E_NOTICE); in incomplete_class_has_property()
90 static zend_function *incomplete_class_get_method(zend_object **object, zend_string *method, const … in incomplete_class_get_method() argument
94 ZVAL_OBJ(&zobject, *object); in incomplete_class_get_method()
104 zend_object *object; in php_create_incomplete_object() local
106 object = zend_objects_new( class_type); in php_create_incomplete_object()
107 object->handlers = &php_incomplete_object_handlers; in php_create_incomplete_object()
109 object_properties_init(object, class_type); in php_create_incomplete_object()
111 return object; in php_create_incomplete_object()
135 PHPAPI zend_string *php_lookup_class_name(zval *object) in php_lookup_class_name() argument
140 object_properties = Z_OBJPROP_P(object); in php_lookup_class_name()
152 PHPAPI void php_store_class_name(zval *object, const char *name, size_t len) in php_store_class_name() argument
158 zend_hash_str_update(Z_OBJPROP_P(object), MAGIC_MEMBER, sizeof(MAGIC_MEMBER)-1, &val); in php_store_class_name()