Lines Matching refs:rv
1036 static void sxe_properties_add(HashTable *rv, char *name, int namelen, zval *value TSRMLS_DC) /* {{… in sxe_properties_add() argument
1042 if (zend_hash_quick_find(rv, name, namelen, h, (void **) &data_ptr) == SUCCESS) { in sxe_properties_add()
1053 zend_hash_quick_update(rv, name, namelen, h, &newptr, sizeof(zval *), NULL); in sxe_properties_add()
1056 zend_hash_quick_update(rv, name, namelen, h, &value, sizeof(zval *), NULL); in sxe_properties_add()
1065 HashTable *rv; in sxe_get_prop_hash() local
1076 ALLOC_HASHTABLE(rv); in sxe_get_prop_hash()
1077 zend_hash_init(rv, 0, NULL, ZVAL_PTR_DTOR, 0); in sxe_get_prop_hash()
1084 rv = sxe->properties; in sxe_get_prop_hash()
1089 ALLOC_HASHTABLE(rv); in sxe_get_prop_hash()
1090 zend_hash_init(rv, 0, NULL, ZVAL_PTR_DTOR, 0); in sxe_get_prop_hash()
1091 sxe->properties = rv; in sxe_get_prop_hash()
1096 return rv; in sxe_get_prop_hash()
1114 sxe_properties_add(rv, "@attributes", sizeof("@attributes"), zattr TSRMLS_CC); in sxe_get_prop_hash()
1129 zend_hash_next_index_insert(rv, &value, sizeof(zval *), NULL); in sxe_get_prop_hash()
1145 zend_hash_next_index_insert(rv, &value, sizeof(zval *), NULL); in sxe_get_prop_hash()
1164 sxe_properties_add(rv, name, namelen, value TSRMLS_CC); in sxe_get_prop_hash()
1170 return rv; in sxe_get_prop_hash()
1763 int rv; in sxe_object_cast() local
1802 rv = cast_object(writeobj, type, (char *)contents TSRMLS_CC); in sxe_object_cast()
1807 return rv; in sxe_object_cast()
1860 zval *rv; in sxe_count_elements() local
1861 zend_call_method_with_0_params(&object, intern->zo.ce, &intern->fptr_count, "count", &rv); in sxe_count_elements()
1862 if (rv) { in sxe_count_elements()
1867 ZVAL_ZVAL(intern->tmp, rv, 1, 1); in sxe_count_elements()
2090 zend_object_value rv; in php_sxe_register_object() local
2092 …rv.handle = zend_objects_store_put(intern, sxe_object_dtor, (zend_objects_free_object_storage_t)sx… in php_sxe_register_object()
2093 rv.handlers = (zend_object_handlers *) &sxe_object_handlers; in php_sxe_register_object()
2095 return rv; in php_sxe_register_object()