Searched refs:cnapName (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/
H A DContactInfoCache.java102 contactInfo.name = input.cnapName;
196 if (TextUtils.isEmpty(number) && TextUtils.isEmpty(info.cnapName)) {
207 } else if (!TextUtils.isEmpty(info.cnapName)) {
209 displayName = info.cnapName;
210 info.name = info.cnapName;
214 " ==> cnapName available: displayName '"
302 final String cnapName; field in class:ContactInfoCache.CnapInformationWrapper
307 String number, String cnapName, Context context, CachedNumberLookupService service) {
309 this.cnapName = cnapName;
306 CnapInformationWrapper( String number, String cnapName, Context context, CachedNumberLookupService service) argument
494 maybeUpdateFromCequintCallerId( CallerInfo callerInfo, String cnapName, boolean isIncoming) argument
771 final String cnapName; field in class:ContactInfoCache.DialerCallCookieWrapper
773 DialerCallCookieWrapper(String callId, int numberPresentation, String cnapName) argument
[all...]
H A DCallerInfoUtils.java90 info.cnapName = call.getCnapName();
91 info.name = info.cnapName;
H A DCallerInfo.java109 public String cnapName; field in class:CallerInfo
544 .append("\ncnapName: " + cnapName)
/packages/apps/Dialer/java/com/android/dialer/oem/
H A DCequintCallerIdManager.java120 Context context, String number, String cnapName, boolean isIncoming) {
124 "number: %s, cnapName: %s, isIncoming: %b",
126 LogUtil.sanitizePii(cnapName),
135 String[] flags = {cnapName, String.valueOf(flag)};
119 getCequintCallerIdContactForInCall( Context context, String number, String cnapName, boolean isIncoming) argument
/packages/services/Telephony/src/com/android/phone/
H A DPhoneUtils.java1413 cit.currentInfo.cnapName = c.getCnapName();
1414 cit.currentInfo.name = cit.currentInfo.cnapName; // This can still get overwritten
1422 + cit.currentInfo.cnapName
1490 cit.currentInfo.cnapName = c.getCnapName();
1492 cit.currentInfo.name = cit.currentInfo.cnapName;
1506 + cit.currentInfo.cnapName
1528 cit.currentInfo.cnapName = c.getCnapName(); // This can still get
1530 cit.currentInfo.name = cit.currentInfo.cnapName;
1536 + cit.currentInfo.cnapName
/packages/services/Telephony/src/com/android/services/telephony/
H A DTelephonyConnection.java930 private String filterCnapName(final String cnapName) { argument
931 if (cnapName == null) {
943 .filter(filteredCnapName -> filteredCnapName.equals(cnapName.toUpperCase()))
946 Log.i(this, "filterCnapName: Filtered CNAP Name: " + cnapName);
950 return cnapName;

Completed in 150 milliseconds