Searched refs:mMemoryCache (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/media/libmedia/ |
D | IMediaSource.cpp | 99 mMemoryCache.reset(); in stop() 138 mMemoryCache.gc(); in readMultiple() 161 mMemoryCache.insert(index, mem); in readMultiple() 163 mem = mMemoryCache.lookup(index); in readMultiple() 263 } mMemoryCache; member in android::BpMediaSource
|
/frameworks/base/docs/html/training/displaying-bitmaps/ |
D | cache-bitmap.jd | 95 private LruCache<String, Bitmap> mMemoryCache; 108 mMemoryCache = new LruCache<String, Bitmap>(cacheSize) { 121 mMemoryCache.put(key, bitmap); 126 return mMemoryCache.get(key); 252 mMemoryCache.put(key, bitmap); 322 private LruCache<String, Bitmap> mMemoryCache; 329 mMemoryCache = retainFragment.mRetainedCache; 330 if (mMemoryCache == null) { 331 mMemoryCache = new LruCache<String, Bitmap>(cacheSize) { 334 retainFragment.mRetainedCache = mMemoryCache;
|
D | manage-memory.jd | 164 private LruCache<String, BitmapDrawable> mMemoryCache; 173 mMemoryCache = new LruCache<String, BitmapDrawable>(mCacheParams.memCacheSize) {
|
D | display-bitmap.jd | 192 private LruCache<String, Bitmap> mMemoryCache; 203 final Bitmap bitmap = mMemoryCache.get(imageKey);
|