Lines Matching refs:gMetaZoneIDTable
42 static UHashtable *gMetaZoneIDTable = NULL; variable
69 if (gMetaZoneIDTable != NULL) { in zoneMeta_cleanup()
70 uhash_close(gMetaZoneIDTable); in zoneMeta_cleanup()
71 gMetaZoneIDTable = NULL; in zoneMeta_cleanup()
756 U_ASSERT(gMetaZoneIDTable == NULL); in initAvailableMetaZoneIDs()
760 … gMetaZoneIDTable = uhash_open(uhash_hashUnicodeString, uhash_compareUnicodeString, NULL, &status); in initAvailableMetaZoneIDs()
761 if (U_FAILURE(status) || gMetaZoneIDTable == NULL) { in initAvailableMetaZoneIDs()
762 gMetaZoneIDTable = NULL; in initAvailableMetaZoneIDs()
765 uhash_setKeyDeleter(gMetaZoneIDTable, uprv_deleteUObject); in initAvailableMetaZoneIDs()
770 uhash_close(gMetaZoneIDTable); in initAvailableMetaZoneIDs()
771 gMetaZoneIDTable = NULL; in initAvailableMetaZoneIDs()
795 if (uhash_get(gMetaZoneIDTable, usMzID) == NULL) { in initAvailableMetaZoneIDs()
797 uhash_put(gMetaZoneIDTable, (void *)usMzID, (void *)uMzID, &status); in initAvailableMetaZoneIDs()
808 uhash_close(gMetaZoneIDTable); in initAvailableMetaZoneIDs()
810 gMetaZoneIDTable = NULL; in initAvailableMetaZoneIDs()
824 if (gMetaZoneIDTable == NULL) { in findMetaZoneID()
827 return (const UChar*)uhash_get(gMetaZoneIDTable, &mzid); in findMetaZoneID()