Home | History | Annotate | Download | only in common

Lines Matching refs:SHARED_DATA_HASHTABLE

155 static UHashtable *SHARED_DATA_HASHTABLE = NULL;
201 if (SHARED_DATA_HASHTABLE != NULL && uhash_count(SHARED_DATA_HASHTABLE) == 0) {
202 uhash_close(SHARED_DATA_HASHTABLE);
203 SHARED_DATA_HASHTABLE = NULL;
219 return (SHARED_DATA_HASHTABLE == NULL);
402 /* Puts the shared data in the static hashtable SHARED_DATA_HASHTABLE */
405 /* Stores the shared data in the SHARED_DATA_HASHTABLE
415 if (SHARED_DATA_HASHTABLE == NULL)
417 SHARED_DATA_HASHTABLE = uhash_openSize(uhash_hashChars, uhash_compareChars, NULL,
440 uhash_put(SHARED_DATA_HASHTABLE,
451 /* gets the shared data from the SHARED_DATA_HASHTABLE (might return NULL if it isn't there)
453 * @return the shared data from the SHARED_DATA_HASHTABLE
459 if (SHARED_DATA_HASHTABLE == NULL)
467 rc = (UConverterSharedData*)uhash_get(SHARED_DATA_HASHTABLE, name);
1053 if (SHARED_DATA_HASHTABLE == NULL) {
1080 while ((e = uhash_nextElement (SHARED_DATA_HASHTABLE, &pos)) != NULL)
1090 uhash_removeElement(SHARED_DATA_HASHTABLE, e);