HomeSort by relevance Sort by last modified time
    Searched refs:mBitmapCache (Results 1 - 2 of 2) sorted by null

  /packages/apps/Mms/src/com/android/mms/model/
ImageModel.java 73 private SoftReference<Bitmap> mBitmapCache = new SoftReference<Bitmap>(null);
158 Bitmap bm = mBitmapCache.get();
163 mBitmapCache = new SoftReference<Bitmap>(bm);
  /packages/apps/Contacts/src/com/android/contacts/
ContactPhotoManager.java 236 private final LruCache<Object, Bitmap> mBitmapCache;
270 mBitmapCache = new LruCache<Object, Bitmap>(
364 mBitmapCache.put(request, holder.bitmap);
375 * bitmap is held either by {@link #mBitmapCache} or by a soft reference in
489 * if needed. Some of the bitmaps will still be retained by {@link #mBitmapCache}.

Completed in 91 milliseconds