Searched refs:sCache (Results 1 – 6 of 6) sorted by relevance
76 private static LruCache<CacheKey, Bitmap> sCache = new LruCache<CacheKey, Bitmap>(cacheSize) { field in BitmapCachingAsset101 Bitmap cached = sCache.get(key); in decodeBitmap()107 sCache.put(key, bitmap); in decodeBitmap()125 Bitmap cached = sCache.get(key); in decodeBitmapRegion()132 sCache.put(key, bitmap); in decodeBitmapRegion()
30 private static final LruCache<String, PackageInfo> sCache = new LruCache<>(MAX_CACHE_ENTRIES); field in TargetPackageInfoGetterTask34 return sCache.get(packageName); in getCachedPackageInfo()38 sCache.remove(packageName); in removeCachedPackageInfo()56 sCache.put(packageName[0], packageInfo); in doInBackground()
40 private static WeakReference<TimeZoneData> sCache = null; field in TimeZoneData46 TimeZoneData data = sCache == null ? null : sCache.get(); in getInstance()51 sCache = new WeakReference<>(data); in getInstance()
46 private static LruCache<Asset, WallpaperColors> sCache = new LruCache<>(/* maxSize= */ 6); field in WallpaperColorsLoader51 WallpaperColors cached = sCache.get(asset); in getWallpaperColors()67 sCache.put(asset, colors); in getWallpaperColors()
52 NNCache NNCache::sCache; member in android::NNCache55 return &sCache; in get()
149 static NNCache sCache; variable