Lines Matching refs:object

69 static zval *saproxy_property_read(zend_object *object, zend_string *member, int type, void **cache…  in saproxy_property_read()  argument
78 static zval *saproxy_property_write(zend_object *object, zend_string *member, zval *value, void **c… in saproxy_property_write() argument
84 static zval *saproxy_read_dimension(zend_object *object, zval *offset, int type, zval *rv) in saproxy_read_dimension() argument
86 php_com_saproxy *proxy = (php_com_saproxy*) object; in saproxy_read_dimension()
125 php_com_saproxy_create(object, rv, offset); in saproxy_read_dimension()
201 php_com_saproxy_create(object, rv, offset); in saproxy_read_dimension()
207 static void saproxy_write_dimension(zend_object *object, zval *offset, zval *value) in saproxy_write_dimension() argument
209 php_com_saproxy *proxy = (php_com_saproxy*) object; in saproxy_write_dimension()
283 static int saproxy_property_exists(zend_object *object, zend_string *member, int check_empty, void … in saproxy_property_exists() argument
289 static int saproxy_dimension_exists(zend_object *object, zval *member, int check_empty) in saproxy_dimension_exists() argument
296 static void saproxy_property_delete(zend_object *object, zend_string *member, void **cache_slot) in saproxy_property_delete() argument
301 static void saproxy_dimension_delete(zend_object *object, zval *offset) in saproxy_dimension_delete() argument
306 static HashTable *saproxy_properties_get(zend_object *object) in saproxy_properties_get() argument
312 static zend_function *saproxy_method_get(zend_object **object, zend_string *name, const zval *key) in saproxy_method_get() argument
318 static zend_function *saproxy_constructor_get(zend_object *object) in saproxy_constructor_get() argument
324 static zend_string* saproxy_class_name_get(const zend_object *object) in saproxy_class_name_get() argument
340 static int saproxy_count_elements(zend_object *object, zend_long *count) in saproxy_count_elements() argument
342 php_com_saproxy *proxy = (php_com_saproxy*) object; in saproxy_count_elements()
357 static void saproxy_free_storage(zend_object *object) in saproxy_free_storage() argument
359 php_com_saproxy *proxy = (php_com_saproxy *)object; in saproxy_free_storage()
370 zend_object_std_dtor(object); in saproxy_free_storage()
375 static zend_object* saproxy_clone(zend_object *object) in saproxy_clone() argument
377 php_com_saproxy *proxy = (php_com_saproxy *) object; in saproxy_clone()
529 zend_object_iterator *php_com_saproxy_iter_get(zend_class_entry *ce, zval *object, int by_ref) in php_com_saproxy_iter_get() argument
531 php_com_saproxy *proxy = SA_FETCH(object); in php_com_saproxy_iter_get()
545 Z_ADDREF_P(object); in php_com_saproxy_iter_get()
546 ZVAL_OBJ(&I->proxy_obj, Z_OBJ_P(object)); in php_com_saproxy_iter_get()