Home
last modified time | relevance | path

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

/frameworks/av/media/libmedia/
DIMediaSource.cpp99 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/
Dcache-bitmap.jd95 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;
Dmanage-memory.jd164 private LruCache<String, BitmapDrawable> mMemoryCache;
173 mMemoryCache = new LruCache<String, BitmapDrawable>(mCacheParams.memCacheSize) {
Ddisplay-bitmap.jd192 private LruCache<String, Bitmap> mMemoryCache;
203 final Bitmap bitmap = mMemoryCache.get(imageKey);