Searched refs:sContactPhotoNumberCache (Results 1 - 2 of 2) sorted by relevance

/packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/
H A DTelecomUtils.java55 private static LruCache<String, Bitmap> sContactPhotoNumberCache; field in class:TelecomUtils
76 if (sContactPhotoNumberCache == null) {
77 sContactPhotoNumberCache = new LruCache<String, Bitmap>(4194304 /** 4 mb **/) {
83 } else if (sContactPhotoNumberCache.get(number) != null) {
84 return sContactPhotoNumberCache.get(number);
107 sContactPhotoNumberCache.put(number, photo);
/packages/apps/Car/Stream/src/com/android/car/stream/telecom/
H A DTelecomUtils.java59 private static LruCache<String, Bitmap> sContactPhotoNumberCache; field in class:TelecomUtils
100 if (sContactPhotoNumberCache == null) {
101 sContactPhotoNumberCache = new LruCache<String, Bitmap>(LRU_CACHE_SIZE) {
108 return sContactPhotoNumberCache.get(number);
128 sContactPhotoNumberCache.put(number, photo);

Completed in 71 milliseconds