Searched refs:ContactCacheEntry (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Dialer/InCallUI/tests/src/com/android/incallui/ |
D | CallCardPresenterTest.java | 23 import com.android.incallui.ContactInfoCache.ContactCacheEntry; 38 private ContactCacheEntry mUnlockedContactInfo; 39 private ContactCacheEntry mLockedContactInfo; 50 mUnlockedContactInfo = new ContactCacheEntry(); in setUp() 57 mLockedContactInfo = new ContactCacheEntry(); in setUp() 85 ContactCacheEntry contactInfo = new ContactCacheEntry(); in testGetNameForCall_EmptyPreferredName() 112 ContactCacheEntry contactInfo = new ContactCacheEntry(); in testGetNumberForCall_EmptyPreferredName()
|
D | StatusBarNotifierTest.java | 23 import com.android.incallui.ContactInfoCache.ContactCacheEntry; 39 private ContactCacheEntry mUnlockedContactInfo; 40 private ContactCacheEntry mLockedContactInfo; 51 mUnlockedContactInfo = new ContactCacheEntry(); in setUp() 58 mLockedContactInfo = new ContactCacheEntry(); in setUp() 93 ContactCacheEntry contactCacheEntry = new ContactCacheEntry(); in testGetContentTitle_EmptyPreferredName()
|
/packages/apps/Dialer/InCallUI/src/com/android/incallui/ |
D | ContactInfoCache.java | 74 private final HashMap<String, ContactCacheEntry> mInfoMap = Maps.newHashMap(); 99 public ContactCacheEntry getInfo(String callId) { in getInfo() 103 public static ContactCacheEntry buildCacheEntryFromCall(Context context, Call call, in buildCacheEntryFromCall() 105 final ContactCacheEntry entry = new ContactCacheEntry(); in buildCacheEntryFromCall() 177 final ContactCacheEntry cacheEntry = mInfoMap.get(callId); in findInfo() 223 ContactCacheEntry cacheEntry = mInfoMap.get(callId); in findInfoQueryComplete() 281 ContactCacheEntry entry = new ContactCacheEntry(); in onPhoneNumberInfoComplete() 294 final ContactCacheEntry oldEntry = mInfoMap.get(mCallId); in onPhoneNumberInfoComplete() 339 final ContactCacheEntry entry = mInfoMap.get(mCallId); in onContactInteractionsFound() 371 final ContactCacheEntry entry = mInfoMap.get(callId); in onImageLoadComplete() [all …]
|
D | ConferenceParticipantListAdapter.java | 41 import com.android.incallui.ContactInfoCache.ContactCacheEntry; 65 private ContactCacheEntry mContactCacheEntry; 68 public ParticipantInfo(Call call, ContactCacheEntry contactCacheEntry) { in ParticipantInfo() 81 public ContactCacheEntry getContactCacheEntry() { in getContactCacheEntry() 85 public void setContactCacheEntry(ContactCacheEntry entry) { in setContactCacheEntry() 131 public void onContactInfoComplete(String callId, ContactCacheEntry entry) { in onContactInfoComplete() 142 public void onImageLoadComplete(String callId, ContactCacheEntry entry) { in onImageLoadComplete() 147 public void onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) {} in onContactInteractionsInfoComplete() 155 private void update(String callId, ContactCacheEntry entry) { in update() 347 ContactCacheEntry contactCache = participantInfo.getContactCacheEntry(); in getView() [all …]
|
D | CallCardPresenter.java | 50 import com.android.incallui.ContactInfoCache.ContactCacheEntry; 84 private ContactCacheEntry mPrimaryContactInfo; 85 private ContactCacheEntry mSecondaryContactInfo; 104 public void onContactInfoComplete(String callId, ContactCacheEntry entry) { in onContactInfoComplete() 112 public void onImageLoadComplete(String callId, ContactCacheEntry entry) { in onImageLoadComplete() 120 public void onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) { in onContactInteractionsInfoComplete() 591 private void onContactInfoComplete(String callId, ContactCacheEntry entry, boolean isPrimary) { in onContactInfoComplete() 610 private void onImageLoadComplete(String callId, ContactCacheEntry entry) { in onImageLoadComplete() 624 private void onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) { in onContactInteractionsInfoComplete() 683 private void updateContactEntry(ContactCacheEntry entry, boolean isPrimary) { in updateContactEntry() [all …]
|
D | StatusBarNotifier.java | 55 import com.android.incallui.ContactInfoCache.ContactCacheEntry; 208 public void onContactInfoComplete(String callId, ContactCacheEntry entry) { in showNotification() 217 public void onImageLoadComplete(String callId, ContactCacheEntry entry) { in showNotification() 225 public void onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) {} in showNotification() 232 private void buildAndSendNotification(Call originalCall, ContactCacheEntry contactInfo) { in buildAndSendNotification() 427 String getContentTitle(ContactCacheEntry contactInfo, Call call) { in getContentTitle() 441 private void addPersonReference(Notification.Builder builder, ContactCacheEntry contactInfo, in addPersonReference() 457 private Bitmap getLargeIconToDisplay(ContactCacheEntry contactInfo, Call call) { in getLargeIconToDisplay()
|
D | VideoCallPresenter.java | 174 private ContactInfoCache.ContactCacheEntry mProfileInfo = null; 1217 mProfileInfo = new ContactInfoCache.ContactCacheEntry(); in loadProfilePhotoAsync()
|