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
1080 ALLOC_HASHTABLE(rv); in sxe_get_prop_hash()
1081 zend_hash_init(rv, 0, NULL, ZVAL_PTR_DTOR, 0); in sxe_get_prop_hash()
1085 rv = sxe->properties; in sxe_get_prop_hash()
1087 ALLOC_HASHTABLE(rv); in sxe_get_prop_hash()
1088 zend_hash_init(rv, 0, NULL, ZVAL_PTR_DTOR, 0); in sxe_get_prop_hash()
1089 sxe->properties = rv; in sxe_get_prop_hash()
1094 return rv; in sxe_get_prop_hash()
1112 sxe_properties_add(rv, "@attributes", sizeof("@attributes"), zattr TSRMLS_CC); in sxe_get_prop_hash()
1128 zend_hash_next_index_insert(rv, &value, sizeof(zval *), NULL); in sxe_get_prop_hash()
1154 zend_hash_next_index_insert(rv, &value, sizeof(zval *), NULL); in sxe_get_prop_hash()
1174 zend_hash_next_index_insert(rv, &value, sizeof(zval *), NULL); in sxe_get_prop_hash()
1176 sxe_properties_add(rv, name, namelen, value TSRMLS_CC); in sxe_get_prop_hash()
1194 return rv; in sxe_get_prop_hash()
1809 int rv; in sxe_object_cast() local
1848 rv = cast_object(writeobj, type, (char *)contents TSRMLS_CC); in sxe_object_cast()
1853 return rv; in sxe_object_cast()
1906 zval *rv; in sxe_count_elements() local
1907 zend_call_method_with_0_params(&object, intern->zo.ce, &intern->fptr_count, "count", &rv); in sxe_count_elements()
1908 if (rv) { in sxe_count_elements()
1913 ZVAL_ZVAL(intern->tmp, rv, 1, 1); in sxe_count_elements()
2138 zend_object_value rv; in php_sxe_register_object() local
2140rv.handle = zend_objects_store_put(intern, sxe_object_dtor, (zend_objects_free_object_storage_t)sx… in php_sxe_register_object()
2141 rv.handlers = (zend_object_handlers *) &sxe_object_handlers; in php_sxe_register_object()
2143 return rv; in php_sxe_register_object()