Home
last modified time | relevance | path

Searched refs:tag_table_cache (Results 1 – 1 of 1) sorted by relevance

/php-src/ext/exif/
H A Dexif.c96 HashTable *tag_table_cache; variable
160 exif_globals->tag_table_cache = NULL; in PHP_INI_END()
179 if (EXIF_G(tag_table_cache)) { in PHP_MSHUTDOWN_FUNCTION()
180 zend_hash_destroy(EXIF_G(tag_table_cache)); in PHP_MSHUTDOWN_FUNCTION()
181 free(EXIF_G(tag_table_cache)); in PHP_MSHUTDOWN_FUNCTION()
1342 if (!EXIF_G(tag_table_cache)) { in exif_get_tag_ht()
1343 EXIF_G(tag_table_cache) = malloc(sizeof(HashTable)); in exif_get_tag_ht()
1344 zend_hash_init(EXIF_G(tag_table_cache), 0, NULL, exif_tag_ht_dtor, 1); in exif_get_tag_ht()
1347 ht = zend_hash_index_find_ptr(EXIF_G(tag_table_cache), (uintptr_t) tag_table); in exif_get_tag_ht()
1353 zend_hash_index_add_new_ptr(EXIF_G(tag_table_cache), (uintptr_t) tag_table, ht); in exif_get_tag_ht()

Completed in 16 milliseconds