Home | History | Annotate | Download | only in incallui

Lines Matching refs:entry

259                 public void onContactInfoComplete(int callId, ContactCacheEntry entry) {
260 updateContactEntry(entry, isPrimary, false);
261 if (entry.name != null) {
262 Log.d(TAG, "Contact found: " + entry);
264 if (entry.personUri != null) {
265 CallerInfoUtils.sendViewNotification(mContext, entry.personUri);
270 public void onImageLoadComplete(int callId, ContactCacheEntry entry) {
274 if (entry.photo != null) {
276 getUi().setPrimaryImage(entry.photo);
278 getUi().setSecondaryImage(entry.photo);
293 private void updateContactEntry(ContactCacheEntry entry, boolean isPrimary,
296 mPrimaryContactInfo = entry;
297 updatePrimaryDisplayInfo(entry, isConference);
299 mSecondaryContactInfo = entry;
346 private void updatePrimaryDisplayInfo(ContactCacheEntry entry, boolean isConference) {
347 Log.d(TAG, "Update primary display " + entry);
357 if (entry != null) {
358 final String name = getNameForCall(entry);
359 final String number = getNumberForCall(entry);
360 final boolean nameIsNumber = name != null && name.equals(entry.number);
361 ui.setPrimary(number, name, nameIsNumber, entry.label,
362 entry.photo, isConference, isGenericConf, entry.isSipCall);