Home
last modified time | relevance | path

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

/PHP-7.4/ext/exif/
H A Dexif.c136 HashTable *tag_table_cache; variable
202 exif_globals->tag_table_cache = NULL; in PHP_INI_END()
225 if (EXIF_G(tag_table_cache)) { in PHP_MSHUTDOWN_FUNCTION()
226 zend_hash_destroy(EXIF_G(tag_table_cache)); in PHP_MSHUTDOWN_FUNCTION()
227 free(EXIF_G(tag_table_cache)); in PHP_MSHUTDOWN_FUNCTION()
1383 if (!EXIF_G(tag_table_cache)) { in exif_get_tag_ht()
1384 EXIF_G(tag_table_cache) = malloc(sizeof(HashTable)); in exif_get_tag_ht()
1385 zend_hash_init(EXIF_G(tag_table_cache), 0, NULL, exif_tag_ht_dtor, 1); in exif_get_tag_ht()
1388 ht = zend_hash_index_find_ptr(EXIF_G(tag_table_cache), (uintptr_t) tag_table); in exif_get_tag_ht()
1394 zend_hash_index_add_new_ptr(EXIF_G(tag_table_cache), (uintptr_t) tag_table, ht); in exif_get_tag_ht()

Completed in 22 milliseconds