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.java173 request.callLogInfo, in queryContactInfo()
212 request.number, request.countryIso, info, request.callLogInfo); in queryContactInfo()
292 ContactInfo callLogInfo, in enqueueRequest() argument
295 ContactInfoRequest request = new ContactInfoRequest(number, countryIso, callLogInfo, type); in enqueueRequest()
306 private boolean callLogInfoMatches(ContactInfo callLogInfo, ContactInfo info) { in callLogInfoMatches() argument
308 return TextUtils.equals(callLogInfo.name, info.name) in callLogInfoMatches()
309 && callLogInfo.type == info.type in callLogInfoMatches()
310 && TextUtils.equals(callLogInfo.label, info.label); in callLogInfoMatches()
/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
DContactInfoHelper.java461 String number, String countryIso, ContactInfo updatedInfo, ContactInfo callLogInfo) { in updateCallLogContactInfo() argument
469 if (callLogInfo != null) { in updateCallLogContactInfo()
470 if (!TextUtils.equals(updatedInfo.name, callLogInfo.name)) { in updateCallLogContactInfo()
475 if (updatedInfo.type != callLogInfo.type) { in updateCallLogContactInfo()
480 if (!TextUtils.equals(updatedInfo.label, callLogInfo.label)) { in updateCallLogContactInfo()
485 if (!UriUtils.areEqual(updatedInfo.lookupUri, callLogInfo.lookupUri)) { in updateCallLogContactInfo()
492 && !TextUtils.equals(updatedInfo.normalizedNumber, callLogInfo.normalizedNumber)) { in updateCallLogContactInfo()
497 if (!TextUtils.equals(updatedInfo.number, callLogInfo.number)) { in updateCallLogContactInfo()
502 if (updatedInfo.photoId != callLogInfo.photoId) { in updateCallLogContactInfo()
508 if (!UriUtils.areEqual(updatedPhotoUriContactsOnly, callLogInfo.photoUri)) { in updateCallLogContactInfo()
[all …]
/packages/apps/Dialer/java/com/android/dialer/app/voicemail/
DVoicemailPlaybackPresenter.java876 try (Cursor callLogInfo = getCallLogInfoCursor(contentResolver, voicemailUri); in doInBackground() argument
879 if (hasContent(callLogInfo) && hasContent(contentInfo)) { in doInBackground()
880 String cachedName = callLogInfo.getString(CallLogQuery.CACHED_NAME); in doInBackground()