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

  /packages/apps/Dialer/java/com/android/dialer/app/legacybindings/
DialerLegacyBindings.java 24 import com.android.dialer.app.contactinfo.ContactInfoCache;
44 ContactInfoCache contactInfoCache,
DialerLegacyBindingsStub.java 24 import com.android.dialer.app.contactinfo.ContactInfoCache;
38 ContactInfoCache contactInfoCache,
47 contactInfoCache,
  /packages/apps/Dialer/java/com/android/incallui/
InCallServiceImpl.java 67 final ContactInfoCache contactInfoCache = ContactInfoCache.getInstance(context);
73 new StatusBarNotifier(context, contactInfoCache),
74 new ExternalCallNotifier(context, contactInfoCache),
75 contactInfoCache,
ExternalCallNotifier.java 66 private final ContactInfoCache mContactInfoCache;
74 @NonNull Context context, @NonNull ContactInfoCache contactInfoCache) {
77 mContactInfoCache = contactInfoCache;
159 new ContactInfoCache.ContactInfoCacheCallback() {
162 String callId, ContactInfoCache.ContactCacheEntry entry) {
172 public void onImageLoadComplete(String callId, ContactInfoCache.ContactCacheEntry entry) {
214 private void savePhoto(NotificationInfo info, ContactInfoCache.ContactCacheEntry entry) {
227 private void saveContactInfo(NotificationInfo info, ContactInfoCache.ContactCacheEntry entry) {
334 Context context, ContactInfoCache.ContactCacheEntry contactInfo, android.telecom.Call call)
    [all...]
ConferenceParticipantListAdapter.java 40 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
218 final ContactInfoCache cache = ContactInfoCache.getInstance(getContext());
348 final ContactInfoCache cache = ContactInfoCache.getInstance(getContext());
359 ContactInfoCache.buildCacheEntryFromCall(
426 * Callback class used when making requests to the {@link ContactInfoCache} to resolve contact
429 public static class ContactLookupCallback implements ContactInfoCache.ContactInfoCacheCallback {
ContactInfoCache.java 75 public class ContactInfoCache implements OnImageLoadCompleteListener {
77 private static final String TAG = ContactInfoCache.class.getSimpleName();
79 private static ContactInfoCache sCache = null;
124 private ContactInfoCache(Context context) {
129 public static synchronized ContactInfoCache getInstance(Context mContext) {
131 sCache = new ContactInfoCache(mContext.getApplicationContext());
142 ContactInfoCache.populateCacheEntry(context, info, entry, call.getNumberPresentation());
478 ContactInfoCache.this,
    [all...]
CallCardPresenter.java 57 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
58 import com.android.incallui.ContactInfoCache.ContactInfoCacheCallback;
309 ContactInfoCache.buildCacheEntryFromCall(
326 ContactInfoCache.buildCacheEntryFromCall(
533 return ContactInfoCache.getInstance(mContext).getDefaultContactPhotoDrawable();
546 final ContactInfoCache cache = ContactInfoCache.getInstance(mContext);
    [all...]
CallerInfoUtils.java 118 ContactInfoCache.getInstance(context).maybeInsertCnapInformationIntoCache(context, call, info);
StatusBarNotifier.java 77 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
78 import com.android.incallui.ContactInfoCache.ContactInfoCacheCallback;
113 private final ContactInfoCache mContactInfoCache;
126 public StatusBarNotifier(@NonNull Context context, @NonNull ContactInfoCache contactInfoCache) {
130 mContactInfoCache = contactInfoCache;
    [all...]
InCallPresenter.java 112 private ContactInfoCache mContactInfoCache;
313 ContactInfoCache contactInfoCache,
327 mContactInfoCache = contactInfoCache;
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/contactinfo/
ContactInfoCache.java 47 public class ContactInfoCache {
63 private final WeakReference<ContactInfoCache> contactInfoCacheWeakReference;
65 public InnerHandler(WeakReference<ContactInfoCache> contactInfoCacheWeakReference) {
71 ContactInfoCache reference = contactInfoCacheWeakReference.get();
87 public ContactInfoCache(
152 "ContactInfoCache.queryContactInfo",
166 "ContactInfoCache.queryContactInfo", "Cequint Caller Id look up takes %d ms", time);
337 super("ContactInfoCache.QueryThread");
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogFragment.java 47 import com.android.dialer.app.contactinfo.ContactInfoCache;
48 import com.android.dialer.app.contactinfo.ContactInfoCache.OnContactInfoChangedListener;
100 private ContactInfoCache mContactInfoCache;
309 new ContactInfoCache(
CallLogAdapter.java 60 import com.android.dialer.app.contactinfo.ContactInfoCache;
129 private ContactInfoCache mContactInfoCache;
362 ContactInfoCache contactInfoCache,
377 mContactInfoCache = contactInfoCache;
    [all...]

Completed in 1319 milliseconds