Home
last modified time | relevance | path

Searched refs:cequintCallerIdContact (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/oem/
DCequintCallerIdManager.java131 CequintCallerIdContact cequintCallerIdContact = in getCequintCallerIdContact() local
137 if (cequintCallerIdContact != null) { in getCequintCallerIdContact()
138 callLogCache.put(number, cequintCallerIdContact); in getCequintCallerIdContact()
140 return cequintCallerIdContact; in getCequintCallerIdContact()
168 CequintCallerIdContact cequintCallerIdContact = in getCequintCallerIdContactForInCall() local
170 if (cequintCallerIdContact != null) { in getCequintCallerIdContactForInCall()
172 incallIncomingCallCache.put(number, cequintCallerIdContact); in getCequintCallerIdContactForInCall()
174 incallOutgoingCallCache.put(number, cequintCallerIdContact); in getCequintCallerIdContactForInCall()
177 return cequintCallerIdContact; in getCequintCallerIdContactForInCall()
/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
DContactInfoHelper.java609 CequintCallerIdContact cequintCallerIdContact = in updateFromCequintCallerId() local
611 if (cequintCallerIdContact == null) { in updateFromCequintCallerId()
614 if (TextUtils.isEmpty(info.name) && !TextUtils.isEmpty(cequintCallerIdContact.name)) { in updateFromCequintCallerId()
615 info.name = cequintCallerIdContact.name; in updateFromCequintCallerId()
617 if (!TextUtils.isEmpty(cequintCallerIdContact.geoDescription)) { in updateFromCequintCallerId()
618 info.geoDescription = cequintCallerIdContact.geoDescription; in updateFromCequintCallerId()
622 if (!info.contactExists && info.photoUri == null && cequintCallerIdContact.imageUrl != null) { in updateFromCequintCallerId()
623 info.photoUri = UriUtils.parseUriOrNull(cequintCallerIdContact.imageUrl); in updateFromCequintCallerId()
/packages/apps/Dialer/java/com/android/incallui/
DContactInfoCache.java499 CequintCallerIdContact cequintCallerIdContact = in maybeUpdateFromCequintCallerId() local
503 if (cequintCallerIdContact == null) { in maybeUpdateFromCequintCallerId()
508 if (TextUtils.isEmpty(callerInfo.name) && !TextUtils.isEmpty(cequintCallerIdContact.name)) { in maybeUpdateFromCequintCallerId()
509 callerInfo.name = cequintCallerIdContact.name; in maybeUpdateFromCequintCallerId()
512 if (!TextUtils.isEmpty(cequintCallerIdContact.geoDescription)) { in maybeUpdateFromCequintCallerId()
513 callerInfo.geoDescription = cequintCallerIdContact.geoDescription; in maybeUpdateFromCequintCallerId()
520 && cequintCallerIdContact.imageUrl != null) { in maybeUpdateFromCequintCallerId()
521 callerInfo.contactDisplayPhotoUri = Uri.parse(cequintCallerIdContact.imageUrl); in maybeUpdateFromCequintCallerId()