Home
last modified time | relevance | path

Searched refs:mSizeIndex (Results 1 – 1 of 1) sorted by relevance

/packages/apps/DocumentsUI/src/com/android/documentsui/
DThumbnailCache.java53 private final HashMap<SizeIndexKey, TreeMap<Point, CacheKey>> mSizeIndex; field in ThumbnailCache
62 mSizeIndex = new HashMap<>(); in ThumbnailCache()
75 sizeMap = mSizeIndex.get(new SizeIndexKey(uri, userId)); in getThumbnail()
132 synchronized (mSizeIndex) { in putThumbnail()
133 sizeMap = mSizeIndex.get(new SizeIndexKey(uri, userId)); in putThumbnail()
136 mSizeIndex.put(new SizeIndexKey(uri, userId), sizeMap); in putThumbnail()
153 synchronized (mSizeIndex) { in removeUri()
154 sizeMap = mSizeIndex.get(new SizeIndexKey(uri, userId)); in removeUri()
169 synchronized (mSizeIndex) { in removeKey()
170 sizeMap = mSizeIndex.get(new SizeIndexKey(cacheKey.uri, cacheKey.userId)); in removeKey()