Searched refs:mNonPooledCache (Results 1 – 1 of 1) sorted by relevance
47 private final LruCache<K, V> mNonPooledCache; field in AltPooledCache61 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 …]