Lines Matching refs:cacheKey
82 CacheKey cacheKey = sizeMap.get(size); in getThumbnail() local
83 if (cacheKey != null) { in getThumbnail()
84 Entry entry = mCache.get(cacheKey); in getThumbnail()
93 cacheKey = sizeMap.get(otherSize); in getThumbnail()
95 if (cacheKey != null) { in getThumbnail()
96 Entry entry = mCache.get(cacheKey); in getThumbnail()
106 cacheKey = sizeMap.get(otherSize); in getThumbnail()
108 if (cacheKey != null) { in getThumbnail()
109 Entry entry = mCache.get(cacheKey); in getThumbnail()
129 CacheKey cacheKey = new CacheKey(uri, userId, size); in putThumbnail() local
141 mCache.put(cacheKey, entry); in putThumbnail()
143 sizeMap.put(size, cacheKey); in putThumbnail()
167 private void removeKey(CacheKey cacheKey) { in removeKey() argument
170 sizeMap = mSizeIndex.get(new SizeIndexKey(cacheKey.uri, cacheKey.userId)); in removeKey()
175 sizeMap.remove(cacheKey.point); in removeKey()