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

  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
ExternalCallNotifier.java 111 private final ContactInfoCache mContactInfoCache;
119 public ExternalCallNotifier(Context context, ContactInfoCache contactInfoCache) {
122 mContactInfoCache = Preconditions.checkNotNull(contactInfoCache);
188 new ContactInfoCache.ContactInfoCacheCallback() {
191 ContactInfoCache.ContactCacheEntry entry) {
202 ContactInfoCache.ContactCacheEntry entry) {
213 ContactInfoCache.ContactCacheEntry entry) {
235 private void savePhoto(NotificationInfo info, ContactInfoCache.ContactCacheEntry entry) {
248 private void saveContactInfo(NotificationInfo info, ContactInfoCache.ContactCacheEntry entry)
    [all...]
InCallServiceImpl.java 63 final ContactInfoCache contactInfoCache = ContactInfoCache.getInstance(context);
69 new StatusBarNotifier(context, contactInfoCache),
70 new ExternalCallNotifier(context, contactInfoCache),
71 contactInfoCache,
ConferenceParticipantListAdapter.java 41 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
114 * Callback class used when making requests to the {@link ContactInfoCache} to resolve contact
117 public static class ContactLookupCallback implements ContactInfoCache.ContactInfoCacheCallback {
349 final ContactInfoCache cache = ContactInfoCache.getInstance(mContext);
460 final ContactInfoCache cache = ContactInfoCache.getInstance(mContext);
470 contactCache = ContactInfoCache.buildCacheEntryFromCall(mContext, call,
ContactInfoCache.java 66 public class ContactInfoCache implements ContactsAsyncHelper.OnImageLoadCompleteListener {
68 private static final String TAG = ContactInfoCache.class.getSimpleName();
77 private static ContactInfoCache sCache = null;
83 public static synchronized ContactInfoCache getInstance(Context mContext) {
85 sCache = new ContactInfoCache(mContext.getApplicationContext());
90 private ContactInfoCache(Context context) {
109 ContactInfoCache.populateCacheEntry(context, info, entry, call.getNumberPresentation(),
249 mContext, cacheEntry.displayPhotoUri, ContactInfoCache.this, callId);
348 Log.v(ContactInfoCache.this, "Setting contact interactions for entry: ", entry);
CallCardPresenter.java 50 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
51 import com.android.incallui.ContactInfoCache.ContactInfoCacheCallback;
275 mPrimaryContactInfo = ContactInfoCache.buildCacheEntryFromCall(mContext, mPrimary,
295 mSecondaryContactInfo = ContactInfoCache.buildCacheEntryFromCall(mContext, mSecondary,
586 final ContactInfoCache cache = ContactInfoCache.getInstance(mContext);
    [all...]
CallerInfoUtils.java 89 ContactInfoCache.getInstance(context).maybeInsertCnapInformationIntoCache(context, call,
StatusBarNotifier.java 55 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
56 import com.android.incallui.ContactInfoCache.ContactInfoCacheCallback;
83 private final ContactInfoCache mContactInfoCache;
96 public StatusBarNotifier(Context context, ContactInfoCache contactInfoCache) {
100 mContactInfoCache = contactInfoCache;
    [all...]
VideoCallPresenter.java 176 private ContactInfoCache.ContactCacheEntry mProfileInfo = null;
    [all...]
InCallPresenter.java 114 private ContactInfoCache mContactInfoCache;
309 ContactInfoCache contactInfoCache,
323 mContactInfoCache = contactInfoCache;
    [all...]
CallCardFragment.java     [all...]
  /packages/apps/Dialer/InCallUI/tests/src/com/android/incallui/
ExternalCallNotifierTest.java 64 @Mock private ContactInfoCache mContactInfoCache;
71 private ContactInfoCache.ContactCacheEntry mContactInfo;
113 mContactInfo = new ContactInfoCache.ContactCacheEntry();
119 // Given the mock ContactInfoCache cache, we need to mock out what happens when the
127 ContactInfoCache.ContactInfoCacheCallback callback
128 = (ContactInfoCache.ContactInfoCacheCallback) args[2];
133 any(ContactInfoCache.ContactInfoCacheCallback.class));
CallCardPresenterTest.java 23 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
StatusBarNotifierTest.java 23 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
InCallPresenterTest.java 43 @Mock private ContactInfoCache mContactInfoCache;
  /packages/apps/Dialer/src/com/android/dialer/contactinfo/
ContactInfoCache.java 42 public class ContactInfoCache {
54 super("ContactInfoCache.QueryThread");
138 public ContactInfoCache(ContactInfoHelper contactInfoHelper,
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogAdapter.java 54 import com.android.dialer.contactinfo.ContactInfoCache;
55 import com.android.dialer.contactinfo.ContactInfoCache.OnContactInfoChangedListener;
109 protected ContactInfoCache mContactInfoCache;
277 mContactInfoCache = new ContactInfoCache(
    [all...]
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogAdapterTest.java 38 import com.android.dialer.contactinfo.ContactInfoCache;
675 * @param inject Whether to inject the contact info into the adapter's ContactInfoCache.
    [all...]

Completed in 257 milliseconds