Searched refs:tag_table_cache (Results 1 – 1 of 1) sorted by relevance
96 HashTable *tag_table_cache; variable160 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()1354 if (!EXIF_G(tag_table_cache)) { in exif_get_tag_ht()1355 EXIF_G(tag_table_cache) = malloc(sizeof(HashTable)); in exif_get_tag_ht()1356 zend_hash_init(EXIF_G(tag_table_cache), 0, NULL, exif_tag_ht_dtor, 1); in exif_get_tag_ht()1359 ht = zend_hash_index_find_ptr(EXIF_G(tag_table_cache), (uintptr_t) tag_table); in exif_get_tag_ht()1365 zend_hash_index_add_new_ptr(EXIF_G(tag_table_cache), (uintptr_t) tag_table, ht); in exif_get_tag_ht()
Completed in 17 milliseconds