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

  /packages/apps/Dialer/java/com/android/dialer/contactphoto/
ContactPhotoManagerImpl.java 97 private static final BitmapHolder BITMAP_UNAVAILABLE;
106 BITMAP_UNAVAILABLE = new BitmapHolder(new byte[0], 0);
115 private final LruCache<Object, BitmapHolder> bitmapHolderCache;
173 new LruCache<Object, BitmapHolder>(holderCacheSize) {
175 protected int sizeOf(Object key, BitmapHolder value) {
181 boolean evicted, Object key, BitmapHolder oldValue, BitmapHolder newValue) {
227 private static void inflateBitmap(BitmapHolder holder, int requestedExtent) {
309 for (BitmapHolder h : bitmapHolderCache.snapshot().values()) {
509 for (BitmapHolder holder : bitmapHolderCache.snapshot().values())
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactPhotoManager.java 608 private static final BitmapHolder BITMAP_UNAVAILABLE;
611 BITMAP_UNAVAILABLE = new BitmapHolder(new byte[0], 0);
618 private static class BitmapHolder {
627 public BitmapHolder(byte[] bytes, int originalSmallerExtent) {
641 private final LruCache<Object, BitmapHolder> mBitmapHolderCache;
728 mBitmapHolderCache = new LruCache<Object, BitmapHolder>(holderCacheSize) {
729 @Override protected int sizeOf(Object key, BitmapHolder value) {
734 boolean evicted, Object key, BitmapHolder oldValue, BitmapHolder newValue) {
774 for (BitmapHolder h : mBitmapHolderCache.snapshot().values())
    [all...]

Completed in 513 milliseconds