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.java407 private volatile CacheKey cacheKey; field in ResourceBundle
831 private final CacheKey cacheKey; field in ResourceBundle.KeyElementReference
835 cacheKey = key; in KeyElementReference()
840 return cacheKey; in getCacheKey()
850 private final CacheKey cacheKey; field in ResourceBundle.BundleReference
854 cacheKey = key; in BundleReference()
859 return cacheKey; in getCacheKey()
1665 CacheKey cacheKey = new CacheKey(baseName, locale, loader); in getBundleImpl() local
1669 BundleReference bundleRef = cacheList.get(cacheKey); in getBundleImpl()
1705 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.java436 Locale cacheKey = LocaleData.getCompatibleLocaleForBug159514442(locale); in getCachedInstance() local
437 SoftReference<DateFormatSymbols> ref = cachedInstances.get(cacheKey); in getCachedInstance()
442 SoftReference<DateFormatSymbols> x = cachedInstances.putIfAbsent(cacheKey, ref); in getCachedInstance()
449 cachedInstances.put(cacheKey, ref); in getCachedInstance()
855 Locale cacheKey = LocaleData.getCompatibleLocaleForBug159514442(locale); in initializeData() local
856 SoftReference<DateFormatSymbols> ref = cachedInstances.get(cacheKey); in initializeData()