Lines Matching refs:mBitmapHolderCache
641 private final LruCache<Object, BitmapHolder> mBitmapHolderCache; field in ContactPhotoManagerImpl
728 mBitmapHolderCache = new LruCache<Object, BitmapHolder>(holderCacheSize) { in ContactPhotoManagerImpl()
741 Log.d(TAG, "Cache size: " + btk(mBitmapHolderCache.maxSize()) in ContactPhotoManagerImpl()
774 for (BitmapHolder h : mBitmapHolderCache.snapshot().values()) { in dumpStats()
790 Log.d(TAG, "L1 Stats: " + mBitmapHolderCache.toString() in dumpStats()
920 for (BitmapHolder holder : mBitmapHolderCache.snapshot().values()) { in refreshCache()
933 BitmapHolder holder = mBitmapHolderCache.get(request.getKey()); in loadCachedPhoto()
1082 mBitmapHolderCache.evictAll(); in clear()
1174 for (BitmapHolder holder : mBitmapHolderCache.snapshot().values()) { in softenCache()
1186 BitmapHolder prev = mBitmapHolderCache.get(key); in cacheBitmap()
1208 mBitmapHolderCache.put(key, holder); in cacheBitmap()
1209 if (mBitmapHolderCache.get(key) != holder) { in cacheBitmap()
1211 mBitmapHolderCache.put(key, BITMAP_UNAVAILABLE); in cacheBitmap()
1214 mBitmapHolderCache.put(key, BITMAP_UNAVAILABLE); in cacheBitmap()
1229 mBitmapHolderCache.put(request.getKey(), holder); in cacheBitmap()
1257 final BitmapHolder holder = mBitmapHolderCache.get(request.getKey()); in obtainPhotoIdsAndUrisToLoad()
1403 if (mBitmapHolderCache.size() > mBitmapHolderCacheRedZoneBytes) { in preloadPhotosInBackground()
1430 + mBitmapHolderCache.size()); in preloadPhotosInBackground()