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

/packages/apps/InCallUI/src/com/android/incallui/
H A DInCallPresenter.java51 private ContactInfoCache mContactInfoCache; field in class:InCallPresenter
95 mContactInfoCache = ContactInfoCache.getInstance(context);
97 mStatusBarNotifier = new StatusBarNotifier(context, mContactInfoCache);
340 return mContactInfoCache;
662 if (mContactInfoCache != null) {
663 mContactInfoCache.clearCache();
665 mContactInfoCache = null;
H A DStatusBarNotifier.java90 private final ContactInfoCache mContactInfoCache; field in class:StatusBarNotifier
103 mContactInfoCache = contactInfoCache;
263 mContactInfoCache.findInfo(call.getIdentification(), isIncoming,
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallLogAdapter.java114 private ExpirableCache<NumberWithCountryIso, ContactInfo> mContactInfoCache; field in class:CallLogAdapter
264 mContactInfoCache = ExpirableCache.create(CONTACT_INFO_CACHE_SIZE);
344 mContactInfoCache.expireAll();
394 ContactInfo existingInfo = mContactInfoCache.getPossiblyExpired(numberCountryIso);
409 mContactInfoCache.put(numberCountryIso, info);
575 mContactInfoCache.getCachedValue(numberCountryIso);
583 mContactInfoCache.put(numberCountryIso, ContactInfo.EMPTY);
915 mContactInfoCache.put(numberCountryIso, contactInfo);
936 ContactInfo ci = mContactInfoCache.getPossiblyExpired(numberCountryIso);

Completed in 2549 milliseconds