HomeSort by relevance Sort by last modified time
    Searched refs:cachedContactInfo (Results 1 - 6 of 6) sorted by null

  /packages/apps/Dialer/src/com/android/dialer/contactinfo/
ContactInfoCache.java 147 public ContactInfo getValue(String number, String countryIso, ContactInfo cachedContactInfo) {
155 info = cachedContactInfo;
158 enqueueRequest(number, countryIso, cachedContactInfo, true);
164 enqueueRequest(number, countryIso, cachedContactInfo, false);
165 } else if (!callLogInfoMatches(cachedContactInfo, info)) {
170 enqueueRequest(number, countryIso, cachedContactInfo, false);
175 info = cachedContactInfo;
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogNotificationsHelperTest.java 124 ContactInfo cachedContactInfo = new ContactInfo();
125 cachedContactInfo.number = TEST_VALID_NUMBER;
126 cachedContactInfo.formattedNumber = TEST_FORMATTED_NUMBER;
128 .thenReturn(cachedContactInfo);
CallLogAdapterTest.java     [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogNotificationsHelper.java 141 ContactInfo cachedContactInfo = mContactInfoHelper.lookupNumber(number, countryIso);
143 if (cachedContactInfo != null && !TextUtils.isEmpty(cachedContactInfo.name)) {
144 return cachedContactInfo;
CallLogAdapter.java 504 final ContactInfo cachedContactInfo = ContactInfoHelper.getContactInfo(c);
515 countryIso, cachedContactInfo);
    [all...]
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
CallerInfoAsyncQuery.java 43 import com.android.dialer.service.CachedNumberLookupService.CachedContactInfo;
536 CachedContactInfo cachedContactInfo = CallerInfoUtils
539 cachedContactInfo.setDirectorySource(directoryLabel, directoryId);
540 mCachedNumberLookupService.addContact(mContext, cachedContactInfo);

Completed in 793 milliseconds