Lines Matching refs:gMetaZoneIDTable
45 static UHashtable *gMetaZoneIDTable = NULL; variable
72 if (gMetaZoneIDTable != NULL) { in zoneMeta_cleanup()
73 uhash_close(gMetaZoneIDTable); in zoneMeta_cleanup()
74 gMetaZoneIDTable = NULL; in zoneMeta_cleanup()
765 U_ASSERT(gMetaZoneIDTable == NULL); in initAvailableMetaZoneIDs()
769 … gMetaZoneIDTable = uhash_open(uhash_hashUnicodeString, uhash_compareUnicodeString, NULL, &status); in initAvailableMetaZoneIDs()
770 if (U_FAILURE(status) || gMetaZoneIDTable == NULL) { in initAvailableMetaZoneIDs()
771 gMetaZoneIDTable = NULL; in initAvailableMetaZoneIDs()
774 uhash_setKeyDeleter(gMetaZoneIDTable, uprv_deleteUObject); in initAvailableMetaZoneIDs()
779 uhash_close(gMetaZoneIDTable); in initAvailableMetaZoneIDs()
780 gMetaZoneIDTable = NULL; in initAvailableMetaZoneIDs()
804 if (uhash_get(gMetaZoneIDTable, usMzID) == NULL) { in initAvailableMetaZoneIDs()
806 uhash_put(gMetaZoneIDTable, (void *)usMzID, (void *)uMzID, &status); in initAvailableMetaZoneIDs()
817 uhash_close(gMetaZoneIDTable); in initAvailableMetaZoneIDs()
819 gMetaZoneIDTable = NULL; in initAvailableMetaZoneIDs()
833 if (gMetaZoneIDTable == NULL) { in findMetaZoneID()
836 return (const UChar*)uhash_get(gMetaZoneIDTable, &mzid); in findMetaZoneID()