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

  /packages/apps/Dialer/java/com/android/dialer/app/legacybindings/
DialerLegacyBindings.java 24 import com.android.dialer.app.contactinfo.ContactInfoCache;
46 ContactInfoCache contactInfoCache,
DialerLegacyBindingsStub.java 24 import com.android.dialer.app.contactinfo.ContactInfoCache;
40 ContactInfoCache contactInfoCache,
51 contactInfoCache,
  /packages/apps/Dialer/java/com/android/incallui/
ExternalCallNotifier.java 77 private final ContactInfoCache contactInfoCache;
84 @NonNull Context context, @NonNull ContactInfoCache contactInfoCache) {
87 this.contactInfoCache = contactInfoCache;
162 contactInfoCache.findInfo(
165 new ContactInfoCache.ContactInfoCacheCallback() {
168 String callId, ContactInfoCache.ContactCacheEntry entry) {
178 public void onImageLoadComplete(String callId, ContactInfoCache.ContactCacheEntry entry)
    [all...]
InCallServiceImpl.java 98 final ContactInfoCache contactInfoCache = ContactInfoCache.getInstance(context);
105 new StatusBarNotifier(context, contactInfoCache),
106 new ExternalCallNotifier(context, contactInfoCache),
107 contactInfoCache,
116 new NewReturnToCallController(this, ContactInfoCache.getInstance(context));
ConferenceParticipantListAdapter.java 41 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
219 final ContactInfoCache cache = ContactInfoCache.getInstance(getContext());
392 final ContactInfoCache cache = ContactInfoCache.getInstance(getContext());
403 ContactInfoCache.buildCacheEntryFromCall(
470 * Callback class used when making requests to the {@link ContactInfoCache} to resolve contact
473 public static class ContactLookupCallback implements ContactInfoCache.ContactInfoCacheCallback {
NewReturnToCallController.java 34 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
35 import com.android.incallui.ContactInfoCache.ContactInfoCacheCallback;
73 private final ContactInfoCache contactInfoCache;
79 public NewReturnToCallController(Context context, ContactInfoCache contactInfoCache) {
81 this.contactInfoCache = contactInfoCache;
210 contactInfoCache.findInfo(
ContactInfoCache.java 77 public class ContactInfoCache implements OnImageLoadCompleteListener {
79 private static final String TAG = ContactInfoCache.class.getSimpleName();
81 private static ContactInfoCache cache = null;
124 private ContactInfoCache(Context context) {
125 Trace.beginSection("ContactInfoCache constructor");
136 public static synchronized ContactInfoCache getInstance(Context mContext) {
138 cache = new ContactInfoCache(mContext.getApplicationContext());
149 ContactInfoCache.populateCacheEntry(context, info, entry, call.getNumberPresentation());
352 Trace.beginSection("ContactInfoCache.findInfo");
438 Trace.beginSection("ContactInfoCache.updateCallerInfoInCacheOnAnyThread")
    [all...]
CallCardPresenter.java 57 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
58 import com.android.incallui.ContactInfoCache.ContactInfoCacheCallback;
324 ContactInfoCache.buildCacheEntryFromCall(
342 ContactInfoCache.buildCacheEntryFromCall(
588 final ContactInfoCache cache = ContactInfoCache.getInstance(context);
    [all...]
CallerInfoUtils.java 113 ContactInfoCache.getInstance(context).maybeInsertCnapInformationIntoCache(context, call, info);
StatusBarNotifier.java 79 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
80 import com.android.incallui.ContactInfoCache.ContactInfoCacheCallback;
116 private final ContactInfoCache contactInfoCache;
130 public StatusBarNotifier(@NonNull Context context, @NonNull ContactInfoCache contactInfoCache) {
134 this.contactInfoCache = contactInfoCache;
256 contactInfoCache.findInfo(call, isIncoming, this);
    [all...]
InCallPresenter.java 120 private ContactInfoCache contactInfoCache;
327 ContactInfoCache contactInfoCache,
343 this.contactInfoCache = contactInfoCache;
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/contactinfo/
ContactInfoCache.java 48 public class ContactInfoCache {
65 private final WeakReference<ContactInfoCache> contactInfoCacheWeakReference;
67 public InnerHandler(WeakReference<ContactInfoCache> contactInfoCacheWeakReference) {
73 ContactInfoCache reference = contactInfoCacheWeakReference.get();
89 public ContactInfoCache(
158 "ContactInfoCache.queryContactInfo",
172 "ContactInfoCache.queryContactInfo", "Cequint Caller Id look up takes %d ms", time);
343 super("ContactInfoCache.QueryThread");
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogFragment.java 53 import com.android.dialer.app.contactinfo.ContactInfoCache;
54 import com.android.dialer.app.contactinfo.ContactInfoCache.OnContactInfoChangedListener;
121 private ContactInfoCache contactInfoCache;
332 contactInfoCache =
333 new ContactInfoCache(
350 contactInfoCache,
454 contactInfoCache.setCequintCallerIdManager(cequintCallerIdManager);
462 contactInfoCache.stop();
555 contactInfoCache.invalidate()
    [all...]
CallLogAdapter.java 61 import com.android.dialer.app.contactinfo.ContactInfoCache;
139 private ContactInfoCache contactInfoCache;
526 ContactInfoCache contactInfoCache,
543 this.contactInfoCache = contactInfoCache;
546 this.contactInfoCache.disableRequestProcessing();
679 contactInfoCache.start();
705 contactInfoCache.stop()
    [all...]

Completed in 464 milliseconds