Home
last modified time | relevance | path

Searched refs:mContactInfoCache (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Dialer/src/com/android/dialer/calllog/
DCallLogAdapter.java166 private ExpirableCache<NumberWithCountryIso, ContactInfo> mContactInfoCache; field in CallLogAdapter
370 mContactInfoCache = ExpirableCache.create(CONTACT_INFO_CACHE_SIZE); in CallLogAdapter()
455 mContactInfoCache.expireAll(); in invalidateCache()
505 ContactInfo existingInfo = mContactInfoCache.getPossiblyExpired(numberCountryIso); in queryContactInfo()
520 mContactInfoCache.put(numberCountryIso, info); in queryContactInfo()
722 mContactInfoCache.getCachedValue(numberCountryIso); in bindView()
730 mContactInfoCache.put(numberCountryIso, ContactInfo.EMPTY); in bindView()
1305 mContactInfoCache.put(numberCountryIso, contactInfo); in injectContactInfoForTest()
1347 ContactInfo ci = mContactInfoCache.getPossiblyExpired(numberCountryIso); in getBetterNumberFromContacts()
1413 mContactInfoCache.expireAll(); in onBadDataReported()
/packages/apps/InCallUI/src/com/android/incallui/
DInCallPresenter.java90 private ContactInfoCache mContactInfoCache; field in InCallPresenter
227 mContactInfoCache = ContactInfoCache.getInstance(context); in setUp()
229 mStatusBarNotifier = new StatusBarNotifier(context, mContactInfoCache); in setUp()
1094 if (mContactInfoCache != null) { in attemptCleanup()
1095 mContactInfoCache.clearCache(); in attemptCleanup()
1097 mContactInfoCache = null; in attemptCleanup()
DStatusBarNotifier.java95 private final ContactInfoCache mContactInfoCache; field in StatusBarNotifier
108 mContactInfoCache = contactInfoCache; in StatusBarNotifier()
234 mContactInfoCache.findInfo(call, isIncoming, new ContactInfoCacheCallback() { in showNotification()