Home | History | Annotate | Download | only in launcher3

Lines Matching defs:cacheKey

72     private static class CacheKey {
76 CacheKey(ComponentName componentName, UserHandleCompat user) {
88 CacheKey other = (CacheKey) o;
99 private final HashMap<CacheKey, CacheEntry> mCache =
100 new HashMap<CacheKey, CacheEntry>(INITIAL_ICON_CACHE_CAPACITY);
187 mCache.remove(new CacheKey(componentName, user));
194 HashSet<CacheKey> forDeletion = new HashSet<CacheKey>();
195 for (CacheKey key: mCache.keySet()) {
201 for (CacheKey condemned: forDeletion) {
217 Iterator<Entry<CacheKey, CacheEntry>> it = mCache.entrySet().iterator();
304 CacheKey cacheKey = new CacheKey(componentName, user);
305 CacheEntry entry = mCache.get(cacheKey);
309 mCache.put(cacheKey, entry);
377 CacheKey cacheKey = new CacheKey(cn, user);
378 CacheEntry entry = mCache.get(cacheKey);
382 mCache.put(cacheKey, entry);
401 for (CacheKey ck : mCache.keySet()) {