Home
last modified time | relevance | path

Searched refs:cacheKey (Results 1 – 8 of 8) sorted by relevance

/external/vogar/src/vogar/android/
DJackDexTask.java74 String cacheKey = null; in execute() local
80 cacheKey = jackCache.makeKey(inputFile.toString(), classpathSubKey, in execute()
83 if (jackCache.getFromCache(localDex, cacheKey)) { in execute()
120 if (cacheKey != null) { in execute()
122 jackCache.insert(cacheKey, localDex); in execute()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DUResourceBundle.java352 synchronized(cacheKey){ in addToCache()
353 cacheKey.setKeyValues(fullName, defaultLocale); in addToCache()
354 UResourceBundle cachedBundle = BUNDLE_CACHE.get(cacheKey); in addToCache()
358 BUNDLE_CACHE.put((ResourceCacheKey)cacheKey.clone(), b); in addToCache()
370 synchronized(cacheKey){ in loadFromCache()
371 cacheKey.setKeyValues(fullName, defaultLocale); in loadFromCache()
372 return BUNDLE_CACHE.get(cacheKey); in loadFromCache()
453 private static final ResourceCacheKey cacheKey = new ResourceCacheKey(); field in UResourceBundle
/external/icu/android_icu4j/src/main/java/android/icu/util/
DUResourceBundle.java338 synchronized(cacheKey){ in addToCache()
339 cacheKey.setKeyValues(fullName, defaultLocale); in addToCache()
340 UResourceBundle cachedBundle = BUNDLE_CACHE.get(cacheKey); in addToCache()
344 BUNDLE_CACHE.put((ResourceCacheKey)cacheKey.clone(), b); in addToCache()
356 synchronized(cacheKey){ in loadFromCache()
357 cacheKey.setKeyValues(fullName, defaultLocale); in loadFromCache()
358 return BUNDLE_CACHE.get(cacheKey); in loadFromCache()
439 private static final ResourceCacheKey cacheKey = new ResourceCacheKey(); field in UResourceBundle
/external/testng/src/main/java/org/testng/internal/
DMethodGroupsHelper.java289 Pair<String, String> cacheKey = Pair.create(pattern.pattern(), group); in isMatch() local
290 Boolean match = MATCH_CACHE.get(cacheKey); in isMatch()
293 MATCH_CACHE.put(cacheKey, match); in isMatch()
DMethodHelper.java90 Pair<String, String> cacheKey = Pair.create(regexp, methodName); in findDependedUponMethods() local
91 Boolean match = MATCH_CACHE.get(cacheKey); in findDependedUponMethods()
94 MATCH_CACHE.put(cacheKey, match); in findDependedUponMethods()
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DEngine.java254 public void onResourceReleased(Key cacheKey, EngineResource resource) { in onResourceReleased() argument
255 activeResources.remove(cacheKey); in onResourceReleased()
257 cache.put(cacheKey, resource); in onResourceReleased()
/external/icu/icu4c/source/i18n/
Dtzgnames.cpp845 … PartialLocationKey* cacheKey = (PartialLocationKey *)uprv_malloc(sizeof(PartialLocationKey)); in getPartialLocationName() local
846 if (cacheKey != NULL) { in getPartialLocationName()
847 cacheKey->tzID = key.tzID; in getPartialLocationName()
848 cacheKey->mzID = key.mzID; in getPartialLocationName()
849 cacheKey->isLong = key.isLong; in getPartialLocationName()
850 uhash_put(fPartialLocationNamesMap, (void *)cacheKey, (void *)uplname, &status); in getPartialLocationName()
852 uprv_free(cacheKey); in getPartialLocationName()
/external/boringssl/src/ssl/test/runner/
Dhandshake_client.go147 var cacheKey string
155 cacheKey = clientSessionCacheKey(c.conn.RemoteAddr(), c.config)
156 candidateSession, ok := sessionCache.Get(cacheKey)
366 sessionCache.Put(cacheKey, hs.session)