Searched refs:cacheMap (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/util/
H A DCache.java252 private final Map<K, CacheEntry<K,V>> cacheMap; field in class:MemoryCache
273 cacheMap = new LinkedHashMap<>(buckets, LOAD_FACTOR, true);
287 int startSize = cacheMap.size();
299 CacheEntry<K,V> currentEntry = cacheMap.remove(key);
303 cacheMap.put(key, currentEntry);
307 int endSize = cacheMap.size();
325 for (Iterator<CacheEntry<K,V>> t = cacheMap.values().iterator();
336 + " expired entries, remaining " + cacheMap.size());
343 return cacheMap.size();
350 for (CacheEntry<K,V> entry : cacheMap
[all...]

Completed in 29 milliseconds