Searched refs:cacheKey (Results 1 – 4 of 4) sorted by relevance
/packages/apps/UnifiedEmail/src/com/android/mail/photomanager/ |
D | PhotoManager.java | 515 private static void cacheBitmapHolder(final String cacheKey, final BitmapHolder holder) { in cacheBitmapHolder() argument 517 BitmapHolder prev = sBitmapHolderCache.get(cacheKey); in cacheBitmapHolder() 519 LogUtils.d(TAG, "Overwriting cache: key=" + cacheKey in cacheBitmapHolder() 527 LogUtils.d(TAG, "Caching data: key=" + cacheKey + ", " in cacheBitmapHolder() 531 sBitmapHolderCache.put(cacheKey, holder); in cacheBitmapHolder() 751 for (String cacheKey : photosMap.keySet()) { in loadPhotosInBackground() 755 cacheKey, in loadPhotosInBackground() 756 photosMap.get(cacheKey) == null ? 0 in loadPhotosInBackground() 757 : photosMap.get(cacheKey).bytes.length, in loadPhotosInBackground() 760 cacheBitmapHolder(cacheKey, photosMap.get(cacheKey)); in loadPhotosInBackground() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
D | ImageCacheService.java | 60 long cacheKey = Utils.crc64Long(key); in getImageData() local 63 request.key = cacheKey; in getImageData() 82 long cacheKey = Utils.crc64Long(key); in putImageData() local 88 mCache.insert(cacheKey, buffer.array()); in putImageData() 97 long cacheKey = Utils.crc64Long(key); in clearImageData() local 100 mCache.clearEntry(cacheKey); in clearImageData()
|
/packages/apps/Mms/src/com/android/mms/util/ |
D | ImageCacheService.java | 59 long cacheKey = crc64Long(key); in getImageData() local 63 value = mCache.lookup(cacheKey); in getImageData() 78 long cacheKey = crc64Long(key); in putImageData() local 84 mCache.insert(cacheKey, buffer.array()); in putImageData()
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
D | ConversationItemViewCoordinates.java | 664 final int cacheKey = config.getCacheKey(); in forConfig() local 665 ConversationItemViewCoordinates coordinates = cache.getCoordinates(cacheKey); in forConfig() 671 cache.put(cacheKey, coordinates); in forConfig()
|