Home
last modified time | relevance | path

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

/development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
DAlbumArtCache.java48 private final LruCache<String, Bitmap[]> mCache; field in AlbumArtCache
61 mCache = new LruCache<String, Bitmap[]>(maxSize) { in AlbumArtCache()
71 Bitmap[] result = mCache.get(artUrl); in getBigImage()
76 Bitmap[] result = mCache.get(artUrl); in getIconImage()
85 Bitmap[] bitmap = mCache.get(artUrl); in fetch()
103 mCache.put(artUrl, bitmaps); in fetch()
108 mCache.size()); in fetch()
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
DContactPhotoBinder.java46 private final HashMap<Long, Drawable> mCache; field in ContactPhotoBinder
57 mCache = new HashMap<Long, Drawable>(); in ContactPhotoBinder()
67 Drawable d = mCache.get(id); in bind()
89 mCache.put(id, d); in bind()