Home
last modified time | relevance | path

Searched refs:mNonPooledCache (Results 1 – 1 of 1) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/bitmap/
DAltPooledCache.java47 private final LruCache<K, V> mNonPooledCache; field in AltPooledCache
61 mNonPooledCache = new NonPooledCache(nonPooledSize); in AltPooledCache()
63 mNonPooledCache = null; in AltPooledCache()
72 if (result == null && mNonPooledCache != null) { in get()
73 result = mNonPooledCache.get(key); in get()
88 } else if (mNonPooledCache != null) { in put()
89 prev = mNonPooledCache.put(key, value); in put()
159 if (mNonPooledCache != null) { in toDebugString()
161 sb.append(mNonPooledCache.size()); in toDebugString()
179 if (mNonPooledCache != null) { in toDebugString()
[all …]