Home | History | Annotate | Download | only in photomanager

Lines Matching refs:cacheKey

515     private static void cacheBitmapHolder(final String cacheKey, final BitmapHolder holder) {
517 BitmapHolder prev = sBitmapHolderCache.get(cacheKey);
519 LogUtils.d(TAG, "Overwriting cache: key=" + cacheKey
527 LogUtils.d(TAG, "Caching data: key=" + cacheKey + ", "
531 sBitmapHolderCache.put(cacheKey, holder);
751 for (String cacheKey : photosMap.keySet()) {
755 cacheKey,
756 photosMap.get(cacheKey) == null ? 0
757 : photosMap.get(cacheKey).bytes.length,
760 cacheBitmapHolder(cacheKey, photosMap.get(cacheKey));
768 final Object cacheKey = r.getKey();
769 final BitmapHolder holder = sBitmapHolderCache.get(cacheKey);