Searched refs:cacheMap (Results 1 – 2 of 2) sorted by relevance
| /libcore/ojluni/src/main/java/sun/security/util/ |
| D | Cache.java | 257 private final Map<K, CacheEntry<K,V>> cacheMap; field in MemoryCache 278 cacheMap = new LinkedHashMap<>(1, LOAD_FACTOR, true); in MemoryCache() 292 int startSize = cacheMap.size(); in emptyQueue() 304 CacheEntry<K,V> currentEntry = cacheMap.remove(key); in emptyQueue() 308 cacheMap.put(key, currentEntry); in emptyQueue() 312 int endSize = cacheMap.size(); in emptyQueue() 334 for (Iterator<CacheEntry<K,V>> t = cacheMap.values().iterator(); in expungeExpiredEntries() 347 + " expired entries, remaining " + cacheMap.size()); in expungeExpiredEntries() 354 return cacheMap.size(); in size() 361 for (CacheEntry<K,V> entry : cacheMap.values()) { in clear() [all …]
|
| /libcore/ojluni/annotations/hiddenapi/sun/security/util/ |
| D | MemoryCache.java | 85 private final java.util.Map<K, sun.security.util.MemoryCache.CacheEntry<K, V>> cacheMap; field in MemoryCache 88 cacheMap = null;
|