Home
last modified time | relevance | path

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

/frameworks/opt/bitmap/src/com/android/bitmap/
DUnrefedPooledCache.java49 private final LruCache<K, V> mNonPooledCache; field in UnrefedPooledCache
64 mNonPooledCache = new NonPooledCache(nonPooledSize); in UnrefedPooledCache()
66 mNonPooledCache = null; in UnrefedPooledCache()
76 if (result == null && mNonPooledCache != null) { in get()
77 result = mNonPooledCache.get(key); in get()
99 } else if (mNonPooledCache != null) { in put()
100 prev = mNonPooledCache.put(key, value); in put()
180 if (mNonPooledCache != null) { in toDebugString()
182 sb.append(mNonPooledCache.size()); in toDebugString()
200 if (mNonPooledCache != null) { in toDebugString()
[all …]