Lines Matching refs:CacheEntry
70 public static class CacheEntry { class in CallerInfoCache
73 public CacheEntry(String customRingtone, boolean shouldSendToVoicemail) { in CacheEntry() method in CallerInfoCache.CacheEntry
143 private volatile HashMap<String, CacheEntry> mNumberToEntry;
160 mNumberToEntry = new HashMap<String, CacheEntry>(); in CallerInfoCache()
190 final HashMap<String, CacheEntry> newNumberToEntry = in refreshCacheEntry()
191 new HashMap<String, CacheEntry>(cursor.getCount()); in refreshCacheEntry()
228 for (Entry<String, CacheEntry> entry : newNumberToEntry.entrySet()) { in refreshCacheEntry()
255 private void putNewEntryWhenAppropriate(HashMap<String, CacheEntry> newNumberToEntry, in putNewEntryWhenAppropriate()
260 final CacheEntry entry = newNumberToEntry.get(numberOrSipAddress); in putNewEntryWhenAppropriate()
263 new CacheEntry(customRingtone, sendToVoicemail)); in putNewEntryWhenAppropriate()
267 new CacheEntry(customRingtone, sendToVoicemail)); in putNewEntryWhenAppropriate()
279 public CacheEntry getCacheEntry(String number) { in getCacheEntry()
287 CacheEntry entry; in getCacheEntry()