OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mContactInfoCache
(Results
1 - 3
of
3
) sorted by null
/packages/apps/InCallUI/src/com/android/incallui/
InCallPresenter.java
51
private ContactInfoCache
mContactInfoCache
;
95
mContactInfoCache
= ContactInfoCache.getInstance(context);
97
mStatusBarNotifier = new StatusBarNotifier(context,
mContactInfoCache
);
340
return
mContactInfoCache
;
662
if (
mContactInfoCache
!= null) {
663
mContactInfoCache
.clearCache();
665
mContactInfoCache
= null;
StatusBarNotifier.java
90
private final ContactInfoCache
mContactInfoCache
;
103
mContactInfoCache
= contactInfoCache;
263
mContactInfoCache
.findInfo(call.getIdentification(), isIncoming,
/packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogAdapter.java
114
private ExpirableCache<NumberWithCountryIso, ContactInfo>
mContactInfoCache
;
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);
[
all
...]
Completed in 43 milliseconds