Searched refs:cacheMap (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/sun/security/util/ |
D | Cache.java | 252 private final Map<K, CacheEntry<K,V>> cacheMap; field in MemoryCache 273 cacheMap = new LinkedHashMap<>(buckets, LOAD_FACTOR, true); in MemoryCache() 287 int startSize = cacheMap.size(); in emptyQueue() 299 CacheEntry<K,V> currentEntry = cacheMap.remove(key); in emptyQueue() 303 cacheMap.put(key, currentEntry); in emptyQueue() 307 int endSize = cacheMap.size(); in emptyQueue() 325 for (Iterator<CacheEntry<K,V>> t = cacheMap.values().iterator(); in expungeExpiredEntries() 336 + " expired entries, remaining " + cacheMap.size()); in expungeExpiredEntries() 343 return cacheMap.size(); in size() 350 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;
|