Home | History | Annotate | Download | only in i18n

Lines Matching defs:cacheEntry

1257     TZGNCoreRef *cacheEntry = NULL;
1261 cacheEntry = (TZGNCoreRef *)uhash_get(gTZGNCoreCache, key);
1262 if (cacheEntry == NULL) {
1279 cacheEntry = (TZGNCoreRef *)uprv_malloc(sizeof(TZGNCoreRef));
1280 if (cacheEntry == NULL) {
1283 cacheEntry->obj = tzgnCore;
1284 cacheEntry->refCount = 1;
1285 cacheEntry->lastAccess = (double)uprv_getUTCtime();
1287 uhash_put(gTZGNCoreCache, newKey, cacheEntry, &status);
1297 if (cacheEntry != NULL) {
1298 uprv_free(cacheEntry);
1300 cacheEntry = NULL;
1304 cacheEntry->refCount++;
1305 cacheEntry->lastAccess = (double)uprv_getUTCtime();
1316 if (cacheEntry == NULL) {
1321 instance->fRef = cacheEntry;