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

/packages/apps/Contacts/src/com/android/contacts/
H A DContactPhotoManager.java325 private final LruCache<Object, Bitmap> mBitmapCache; field in class:ContactPhotoManagerImpl
358 /** Cache size for {@link #mBitmapCache} for devices with "large" RAM. */
375 mBitmapCache = new LruCache<Object, Bitmap>(bitmapCacheSize) {
400 + " + " + btk(mBitmapCache.maxSize()));
447 for (Bitmap b : mBitmapCache.snapshot().values()) {
587 if (cachedBitmap.getByteCount() < mBitmapCache.maxSize() / 6) {
588 mBitmapCache.put(request.getKey(), cachedBitmap);
599 * bitmap is held either by {@link #mBitmapCache} or by a soft reference in
657 mBitmapCache.evictAll();
744 * if needed. Some of the bitmaps will still be retained by {@link #mBitmapCache}
[all...]

Completed in 35 milliseconds