Home | History | Annotate | Download | only in common

Lines Matching full:cache

194     Hashtable* cache;
196 cache = LocaleUtility_cache;
199 if (cache == NULL) {
200 cache = new Hashtable(status);
201 if (cache == NULL || U_FAILURE(status)) {
204 cache->setValueDeleter(uhash_deleteHashtable);
209 LocaleUtility_cache = h = cache;
210 cache = NULL;
214 if(cache != NULL) {
215 delete cache;
217 cache = h;
220 U_ASSERT(cache != NULL);
224 htp = (Hashtable*) cache->get(bundleID);
247 cache->put(bundleID, (void*)htp, status);