Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DResourceBundle.java359 private volatile CacheKey cacheKey; field in ResourceBundle
720 private CacheKey cacheKey; field in ResourceBundle.LoaderReference
724 cacheKey = key; in LoaderReference()
728 return cacheKey; in getCacheKey()
738 private CacheKey cacheKey; field in ResourceBundle.BundleReference
742 cacheKey = key; in BundleReference()
746 return cacheKey; in getCacheKey()
1321 CacheKey cacheKey = new CacheKey(baseName, locale, loader); in getBundleImpl() local
1325 BundleReference bundleRef = cacheList.get(cacheKey); in getBundleImpl()
1358 bundle = findBundle(cacheKey, candidateLocales, formats, 0, control, baseBundle); in getBundleImpl()
[all …]
/libcore/ojluni/src/main/java/java/lang/reflect/
DWeakCache.java105 Object cacheKey = CacheKey.valueOf(key, refQueue); in get() local
108 ConcurrentMap<Object, Supplier<V>> valuesMap = map.get(cacheKey); in get()
111 = map.putIfAbsent(cacheKey, in get()
188 CacheKey<K> cacheKey; in expungeStaleEntries() local
189 while ((cacheKey = (CacheKey<K>)refQueue.poll()) != null) { in expungeStaleEntries()
190 cacheKey.expungeFrom(map, reverseMap); in expungeStaleEntries()
/libcore/support/src/test/java/libcore/javax/net/ssl/
DRandomPrivateKeyX509ExtendedKeyManager.java60 String cacheKey = keyAlgorithm + "-" + keyLengthBits; in getPrivateKey() local
61 result = cachedKeys.get(cacheKey); in getPrivateKey()
66 cachedKeys.put(cacheKey, result); in getPrivateKey()
/libcore/ojluni/src/main/java/java/text/
DDateFormatSymbols.java431 Locale cacheKey = LocaleData.getCompatibleLocaleForBug159514442(locale); in getCachedInstance() local
432 SoftReference<DateFormatSymbols> ref = cachedInstances.get(cacheKey); in getCachedInstance()
437 SoftReference<DateFormatSymbols> x = cachedInstances.putIfAbsent(cacheKey, ref); in getCachedInstance()
444 cachedInstances.put(cacheKey, ref); in getCachedInstance()
824 Locale cacheKey = LocaleData.getCompatibleLocaleForBug159514442(locale); in initializeData() local
825 SoftReference<DateFormatSymbols> ref = cachedInstances.get(cacheKey); in initializeData()