Home
last modified time | relevance | path

Searched refs:cacheKey (Results 1 – 4 of 4) sorted by relevance

/packages/apps/DocumentsUI/src/com/android/documentsui/
DThumbnailCache.java82 CacheKey cacheKey = sizeMap.get(size); in getThumbnail() local
83 if (cacheKey != null) { in getThumbnail()
84 Entry entry = mCache.get(cacheKey); in getThumbnail()
93 cacheKey = sizeMap.get(otherSize); in getThumbnail()
95 if (cacheKey != null) { in getThumbnail()
96 Entry entry = mCache.get(cacheKey); in getThumbnail()
106 cacheKey = sizeMap.get(otherSize); in getThumbnail()
108 if (cacheKey != null) { in getThumbnail()
109 Entry entry = mCache.get(cacheKey); in getThumbnail()
129 CacheKey cacheKey = new CacheKey(uri, userId, size); in putThumbnail() local
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/
DConnectionServiceRepository.java65 Pair<ComponentName, UserHandle> cacheKey = Pair.create(componentName, userHandle); in getService() local
66 ConnectionServiceWrapper service = mServiceCache.get(cacheKey); in getService()
77 mServiceCache.put(cacheKey, service); in getService()
85 Pair<ComponentName, UserHandle> cacheKey = Pair.create(componentName, userHandle); in setService() local
86 mServiceCache.put(cacheKey, service); in setService()
97 for (Pair<ComponentName, UserHandle> cacheKey : mServiceCache.keySet()) { in dump()
98 ComponentName componentName = cacheKey.first; in dump()
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DImageCacheService.java60 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/Dialer/java/com/android/dialer/telecom/
DTelecomUtil.java243 Pair<PhoneAccountHandle, String> cacheKey = new Pair<>(accountHandle, number); in isVoicemailNumber() local
244 if (isVoicemailNumberCache.containsKey(cacheKey)) { in isVoicemailNumber()
245 return isVoicemailNumberCache.get(cacheKey); in isVoicemailNumber()
251 isVoicemailNumberCache.put(cacheKey, result); in isVoicemailNumber()