Home
last modified time | relevance | path

Searched refs:callLogInfo (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/app/contactinfo/
DContactInfoRequest.java39 public final ContactInfo callLogInfo; field in ContactInfoRequest
62 String number, String countryIso, ContactInfo callLogInfo, @TYPE int type) { in ContactInfoRequest() argument
66 this.callLogInfo = callLogInfo; in ContactInfoRequest()
90 if (!Objects.equals(callLogInfo, other.callLogInfo)) { in equals()
107 return Objects.hash(sequenceNumber, number, countryIso, callLogInfo, type); in hashCode()
DContactInfoCache.java179 request.callLogInfo, in queryContactInfo()
218 request.number, request.countryIso, info, request.callLogInfo); in queryContactInfo()
298 ContactInfo callLogInfo, in enqueueRequest() argument
301 ContactInfoRequest request = new ContactInfoRequest(number, countryIso, callLogInfo, type); in enqueueRequest()
312 private boolean callLogInfoMatches(ContactInfo callLogInfo, ContactInfo info) { in callLogInfoMatches() argument
314 return TextUtils.equals(callLogInfo.name, info.name) in callLogInfoMatches()
315 && callLogInfo.type == info.type in callLogInfoMatches()
316 && TextUtils.equals(callLogInfo.label, info.label); in callLogInfoMatches()
/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
DContactInfoHelper.java471 String number, String countryIso, ContactInfo updatedInfo, ContactInfo callLogInfo) { in updateCallLogContactInfo() argument
479 if (callLogInfo != null) { in updateCallLogContactInfo()
480 if (!TextUtils.equals(updatedInfo.name, callLogInfo.name)) { in updateCallLogContactInfo()
485 if (updatedInfo.type != callLogInfo.type) { in updateCallLogContactInfo()
490 if (!TextUtils.equals(updatedInfo.label, callLogInfo.label)) { in updateCallLogContactInfo()
495 if (!UriUtils.areEqual(updatedInfo.lookupUri, callLogInfo.lookupUri)) { in updateCallLogContactInfo()
502 && !TextUtils.equals(updatedInfo.normalizedNumber, callLogInfo.normalizedNumber)) { in updateCallLogContactInfo()
507 if (!TextUtils.equals(updatedInfo.number, callLogInfo.number)) { in updateCallLogContactInfo()
512 if (updatedInfo.photoId != callLogInfo.photoId) { in updateCallLogContactInfo()
518 if (!UriUtils.areEqual(updatedPhotoUriContactsOnly, callLogInfo.photoUri)) { in updateCallLogContactInfo()
[all …]
/packages/apps/Dialer/java/com/android/dialer/app/voicemail/
DVoicemailPlaybackPresenter.java886 try (Cursor callLogInfo = getCallLogInfoCursor(contentResolver, voicemailUri); in doInBackground() argument
889 if (hasContent(callLogInfo) && hasContent(contentInfo)) { in doInBackground()
890 String cachedName = callLogInfo.getString(CallLogQuery.CACHED_NAME); in doInBackground()