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

  /packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
CachedNumberLookupService.java 29 CachedContactInfo buildCachedContactInfo(ContactInfo info);
37 * @return A {@link CachedContactInfo} containing the contact information if the phone number is
42 CachedContactInfo lookupCachedContactFromNumber(Context context, String number);
44 void addContact(Context context, CachedContactInfo info);
52 boolean reportAsInvalid(Context context, CachedContactInfo cachedContactInfo);
65 interface CachedContactInfo {
ContactInfoHelper.java 45 import com.android.dialer.phonenumbercache.CachedNumberLookupService.CachedContactInfo;
445 CachedContactInfo cacheInfo =
598 CachedContactInfo cachedContactInfo =
600 cachedNumberLookupService.addContact(context, cachedContactInfo);
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogNotificationsQueryHelper.java 216 ContactInfo cachedContactInfo = contactInfoHelper.lookupNumber(number, countryIso);
218 if (cachedContactInfo != null && !TextUtils.isEmpty(cachedContactInfo.name)) {
219 return cachedContactInfo;
CallLogAdapter.java     [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/list/
RegularSearchFragment.java 37 import com.android.dialer.phonenumbercache.CachedNumberLookupService.CachedContactInfo;
53 private DialerExecutor<CachedContactInfo> addContactTask;
99 CachedContactInfo cachedContactInfo =
101 addContactTask.executeSerial(cachedContactInfo);
180 private static class AddContactWorker implements Worker<CachedContactInfo, Void> {
190 public Void doInBackground(@Nullable CachedContactInfo contactInfo) throws Throwable {
  /packages/apps/Dialer/java/com/android/dialer/calllogutils/
PhoneCallDetails.java 133 public ContactInfo cachedContactInfo;
  /packages/apps/Dialer/java/com/android/incallui/
CallerInfoAsyncQuery.java 42 import com.android.dialer.phonenumbercache.CachedNumberLookupService.CachedContactInfo;
328 CachedContactInfo cachedContactInfo =
331 cachedContactInfo.setDirectorySource(directoryLabel, directoryId);
332 cachedNumberLookupService.addContact(context, cachedContactInfo);

Completed in 1067 milliseconds