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

  /packages/apps/Dialer/java/com/android/contacts/common/
ContactPhotoManagerImpl.java 98 /** Cache size for {@link #mBitmapHolderCache} for devices with "large" RAM. */
115 private final LruCache<Object, BitmapHolder> mBitmapHolderCache;
121 * #mBitmapHolderCache}.
136 /** {@code true} if ALL entries in {@link #mBitmapHolderCache} are NOT fresh. */
172 mBitmapHolderCache =
193 "Cache size: " + btk(mBitmapHolderCache.maxSize()) + " + " + btk(mBitmapCache.maxSize()));
309 for (BitmapHolder h : mBitmapHolderCache.snapshot().values()) {
339 + mBitmapHolderCache.toString()
497 for (BitmapHolder holder : mBitmapHolderCache.snapshot().values()) {
511 BitmapHolder holder = mBitmapHolderCache.get(request.getKey())
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactPhotoManager.java 641 private final LruCache<Object, BitmapHolder> mBitmapHolderCache;
644 * {@code true} if ALL entries in {@link #mBitmapHolderCache} are NOT fresh.
656 * them from bytes (the bytes are stored in {@link #mBitmapHolderCache}.
688 /** Cache size for {@link #mBitmapHolderCache} for devices with "large" RAM. */
728 mBitmapHolderCache = new LruCache<Object, BitmapHolder>(holderCacheSize) {
741 Log.d(TAG, "Cache size: " + btk(mBitmapHolderCache.maxSize())
774 for (BitmapHolder h : mBitmapHolderCache.snapshot().values()) {
790 Log.d(TAG, "L1 Stats: " + mBitmapHolderCache.toString()
    [all...]

Completed in 86 milliseconds