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

  /packages/apps/Dialer/InCallUI/tests/src/com/android/incallui/
CallCardPresenterTest.java 23 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
38 private ContactCacheEntry mUnlockedContactInfo;
39 private ContactCacheEntry mLockedContactInfo;
50 mUnlockedContactInfo = new ContactCacheEntry();
57 mLockedContactInfo = new ContactCacheEntry();
85 ContactCacheEntry contactInfo = new ContactCacheEntry();
112 ContactCacheEntry contactInfo = new ContactCacheEntry();
StatusBarNotifierTest.java 23 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
39 private ContactCacheEntry mUnlockedContactInfo;
40 private ContactCacheEntry mLockedContactInfo;
51 mUnlockedContactInfo = new ContactCacheEntry();
58 mLockedContactInfo = new ContactCacheEntry();
93 ContactCacheEntry contactCacheEntry = new ContactCacheEntry();
94 contactCacheEntry.number = NUMBER;
96 assertEquals(NUMBER, statusBarNotifier.getContentTitle(contactCacheEntry, mCall))
    [all...]
ExternalCallNotifierTest.java 71 private ContactInfoCache.ContactCacheEntry mContactInfo;
113 mContactInfo = new ContactInfoCache.ContactCacheEntry();
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
ContactInfoCache.java 74 private final HashMap<String, ContactCacheEntry> mInfoMap = Maps.newHashMap();
99 public ContactCacheEntry getInfo(String callId) {
103 public static ContactCacheEntry buildCacheEntryFromCall(Context context, Call call,
105 final ContactCacheEntry entry = new ContactCacheEntry();
177 final ContactCacheEntry cacheEntry = mInfoMap.get(callId);
223 ContactCacheEntry cacheEntry = mInfoMap.get(callId);
281 ContactCacheEntry entry = new ContactCacheEntry();
294 final ContactCacheEntry oldEntry = mInfoMap.get(mCallId)
    [all...]
ConferenceParticipantListAdapter.java 41 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
61 * the corresponding {@link ContactCacheEntry} for the participant.
65 private ContactCacheEntry mContactCacheEntry;
68 public ParticipantInfo(Call call, ContactCacheEntry contactCacheEntry) {
70 mContactCacheEntry = contactCacheEntry;
81 public ContactCacheEntry getContactCacheEntry() {
85 public void setContactCacheEntry(ContactCacheEntry entry) {
131 public void onContactInfoComplete(String callId, ContactCacheEntry entry) {
142 public void onImageLoadComplete(String callId, ContactCacheEntry entry)
    [all...]
ExternalCallNotifier.java 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) {
318 ContactInfoCache.ContactCacheEntry contactInfo, android.telecom.Call call) {
366 ContactInfoCache.ContactCacheEntry contactInfo, android.telecom.Call call) {
392 private String getPersonReference(ContactInfoCache.ContactCacheEntry contactInfo,
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) {
112 public void onImageLoadComplete(String callId, ContactCacheEntry entry) {
120 public void onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) {
591 private void onContactInfoComplete(String callId, ContactCacheEntry entry, boolean isPrimary) {
610 private void onImageLoadComplete(String callId, ContactCacheEntry entry) {
624 private void onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) {
683 private void updateContactEntry(ContactCacheEntry entry, boolean isPrimary)
    [all...]
StatusBarNotifier.java 55 import com.android.incallui.ContactInfoCache.ContactCacheEntry;
208 public void onContactInfoComplete(String callId, ContactCacheEntry entry) {
217 public void onImageLoadComplete(String callId, ContactCacheEntry entry) {
225 public void onContactInteractionsInfoComplete(String callId, ContactCacheEntry entry) {}
232 private void buildAndSendNotification(Call originalCall, ContactCacheEntry contactInfo) {
428 String getContentTitle(ContactCacheEntry contactInfo, Call call) {
442 private void addPersonReference(Notification.Builder builder, ContactCacheEntry contactInfo,
458 private Bitmap getLargeIconToDisplay(ContactCacheEntry contactInfo, Call call) {
    [all...]
VideoCallPresenter.java 176 private ContactInfoCache.ContactCacheEntry mProfileInfo = null;
    [all...]

Completed in 272 milliseconds