Lines Matching refs:object

28 static zval *com_property_read(zend_object *object, zend_string *member, int type, void **cache_slo…  in com_property_read()  argument
36 obj = (php_com_dotnet_object*) object; in com_property_read()
51 php_com_saproxy_create(object, rv, &zv); in com_property_read()
60 static zval *com_property_write(zend_object *object, zend_string *member, zval *value, void **cache… in com_property_write() argument
65 obj = (php_com_dotnet_object*) object; in com_property_write()
80 static zval *com_read_dimension(zend_object *object, zval *offset, int type, zval *rv) in com_read_dimension() argument
87 obj = (php_com_dotnet_object*) object; in com_read_dimension()
106 php_com_saproxy_create(object, rv, offset); in com_read_dimension()
116 static void com_write_dimension(zend_object *object, zval *offset, zval *value) in com_write_dimension() argument
123 obj = (php_com_dotnet_object*) object; in com_write_dimension()
180 static zval *com_get_property_ptr_ptr(zend_object *object, zend_string *member, int type, void **ca… in com_get_property_ptr_ptr() argument
185 static int com_property_exists(zend_object *object, zend_string *member, int check_empty, void **ca… in com_property_exists() argument
190 obj = (php_com_dotnet_object*) object; in com_property_exists()
204 static int com_dimension_exists(zend_object *object, zval *member, int check_empty) in com_dimension_exists() argument
211 static void com_property_delete(zend_object *object, zend_string *member, void **cache_slot) in com_property_delete() argument
216 static void com_dimension_delete(zend_object *object, zval *offset) in com_dimension_delete() argument
221 static HashTable *com_properties_get(zend_object *object) in com_properties_get() argument
231 static HashTable *com_get_gc(zend_object *object, zval **table, int *n) in com_get_gc() argument
251 zval *object = getThis(); in PHP_FUNCTION() local
254 php_com_dotnet_object *obj = CDNO_FETCH(object); in PHP_FUNCTION()
391 static zend_string* com_class_name_get(const zend_object *object) in com_class_name_get() argument
393 php_com_dotnet_object *obj = (php_com_dotnet_object *)object; in com_class_name_get()
494 static int com_object_count(zend_object *object, zend_long *count) in com_object_count() argument
499 obj = (php_com_dotnet_object*) object; in com_object_count()
565 void php_com_object_free_storage(zend_object *object) in php_com_object_free_storage() argument
567 php_com_dotnet_object *obj = (php_com_dotnet_object*)object; in php_com_object_free_storage()
591 zend_object_std_dtor(object); in php_com_object_free_storage()
594 zend_object* php_com_object_clone(zend_object *object) in php_com_object_clone() argument
598 origobject = (php_com_dotnet_object*) object; in php_com_object_clone()