Home
last modified time | relevance | path

Searched refs:numberPresentation (Results 1 – 20 of 20) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/
DCallerInfoUtils.java60 if (info.numberPresentation == TelecomManager.PRESENTATION_ALLOWED) { in getCallerInfoForCall()
86 info.numberPresentation = call.getNumberPresentation(); in buildCallerInfo()
101 number = modifyForSpecialCnapCases(context, info, number, info.numberPresentation); in buildCallerInfo()
178 ci.numberPresentation = TelecomManager.PRESENTATION_UNKNOWN; in modifyForSpecialCnapCases()
186 if (ci.numberPresentation == TelecomManager.PRESENTATION_ALLOWED in modifyForSpecialCnapCases()
187 || (ci.numberPresentation != presentation in modifyForSpecialCnapCases()
192 ci.numberPresentation = TelecomManager.PRESENTATION_RESTRICTED; in modifyForSpecialCnapCases()
195 ci.numberPresentation = TelecomManager.PRESENTATION_UNKNOWN; in modifyForSpecialCnapCases()
202 + ci.numberPresentation); in modifyForSpecialCnapCases()
DContactInfoCache.java431 int numberPresentation, in updateCallerInfoInCacheOnAnyThread() argument
458 int presentationMode = numberPresentation; in updateCallerInfoInCacheOnAnyThread()
779 final int numberPresentation; field in ContactInfoCache.DialerCallCookieWrapper
782 DialerCallCookieWrapper(String callId, int numberPresentation, String cnapName) { in DialerCallCookieWrapper() argument
784 this.numberPresentation = numberPresentation; in DialerCallCookieWrapper()
810 updateCallerInfoInCacheOnAnyThread(cw.callId, cw.numberPresentation, ci, true, queryToken); in onDataLoaded()
DCallerInfo.java91 public int numberPresentation; field in CallerInfo
525 .append("\nnumberPresentation: " + numberPresentation) in toString()
/packages/services/Telephony/src/com/android/phone/
DPhoneUtils.java832 cit.currentInfo.numberPresentation = c.getNumberPresentation(); in startGetCallerInfo()
839 + ", Name/Number Pres=" + cit.currentInfo.numberPresentation); in startGetCallerInfo()
847 cit.currentInfo.numberPresentation); in startGetCallerInfo()
853 if (cit.currentInfo.numberPresentation != PhoneConstants.PRESENTATION_ALLOWED) { in startGetCallerInfo()
909 cit.currentInfo.numberPresentation = c.getNumberPresentation(); in startGetCallerInfo()
913 updatedNumber, cit.currentInfo.numberPresentation); in startGetCallerInfo()
923 + ", Name/Number Pres=" + cit.currentInfo.numberPresentation); in startGetCallerInfo()
930 if (cit.currentInfo.numberPresentation != PhoneConstants.PRESENTATION_ALLOWED) { in startGetCallerInfo()
947 cit.currentInfo.numberPresentation = c.getNumberPresentation(); in startGetCallerInfo()
953 + ", Name/Number Pres=" + cit.currentInfo.numberPresentation); in startGetCallerInfo()
[all …]
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DCallLogNotificationsQueryHelper.java191 @Nullable String number, int numberPresentation, @Nullable String countryIso) { in getName() argument
192 return getContactInfo(number, numberPresentation, countryIso).name; in getName()
201 @Nullable String number, int numberPresentation, @Nullable String countryIso) { in getContactInfo() argument
215 PhoneNumberDisplayUtil.getDisplayName(context, number, numberPresentation, false) in getContactInfo()
270 public final int numberPresentation; field in CallLogNotificationsQueryHelper.NewCall
282 int numberPresentation, in NewCall() argument
292 this.numberPresentation = numberPresentation; in NewCall()
DCallLogListItemViewHolder.java184 public int numberPresentation; field in CallLogListItemViewHolder
530 if (!PhoneNumberHelper.canPlaceCallsTo(number, numberPresentation)) { in updatePrimaryActionButton()
592 boolean canPlaceCallToNumber = PhoneNumberHelper.canPlaceCallsTo(number, numberPresentation); in bindActionButtons()
960 numberPresentation, in getContactType()
1233 if (PhoneNumberHelper.canPlaceCallsTo(number, numberPresentation) in onCreateContextMenu()
1256 boolean canPlaceCallToNumber = PhoneNumberHelper.canPlaceCallsTo(number, numberPresentation); in onCreateContextMenu()
DCallLogAdapter.java951 final int numberPresentation = cursor.getInt(CallLogQuery.NUMBER_PRESENTATION); in createPhoneCallDetails() local
958 new PhoneCallDetails(number, numberPresentation, postDialDigits); in createPhoneCallDetails()
986 views.numberPresentation = numberPresentation; in createPhoneCallDetails()
1052 if (PhoneNumberHelper.canPlaceCallsTo(details.number, details.numberPresentation) in loadData()
DMissedCallNotifier.java170 call.number, call.numberPresentation, call.countryIso); in updateMissedCallNotification()
327 call.number, call.numberPresentation, call.countryIso); in getNotificationForCall()
DVisualVoicemailUpdateTask.java103 newCall.number, newCall.numberPresentation, newCall.countryIso); in updateNotification()
/packages/apps/Dialer/java/com/android/dialer/calllogutils/
DPhoneCallDetails.java43 public int numberPresentation; field in PhoneCallDetails
145 CharSequence number, int numberPresentation, CharSequence postDialDigits) { in PhoneCallDetails() argument
147 this.numberPresentation = numberPresentation; in PhoneCallDetails()
196 context, number, numberPresentation, formattedNumber, postDialDigits, isVoicemail) in updateDisplayNumber()
/packages/providers/CallLogProvider/src/com/android/calllogbackup/
DCallLogBackupAgent.java71 int numberPresentation; field in CallLogBackupAgent.Call
269 call.numberPresentation, call.type, call.features, handle, call.date, in writeCallToProvider()
339 call.numberPresentation = dataInput.readInt(); in readCallFromData()
406 call.numberPresentation = in readCallFromCursor()
435 data.writeInt(call.numberPresentation); in addCallToBackup()
/packages/apps/Dialer/java/com/android/incallui/incall/protocol/
DPrimaryInfo.java75 public abstract int numberPresentation(); in numberPresentation() method in PrimaryInfo
121 public abstract Builder setNumberPresentation(int numberPresentation); in setNumberPresentation() argument
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapCallLogComposer.java146 final int numberPresentation = mCursor.getInt(NUMBER_PRESENTATION_COLUMN_INDEX); in createOneCallLogEntryInternal() local
150 if (numberPresentation != Calls.PRESENTATION_ALLOWED) { in createOneCallLogEntryInternal()
DBluetoothPbapVcardManager.java231 final int numberPresentation = in loadCallHistoryList() local
233 if (numberPresentation != Calls.PRESENTATION_ALLOWED) { in loadCallHistoryList()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
DAtPhonebook.java575 int numberPresentation = Calls.PRESENTATION_ALLOWED; in processCpbrCommand() local
577 numberPresentation = pbr.cursor.getInt(pbr.numberPresentationColumn); in processCpbrCommand()
579 if (numberPresentation != Calls.PRESENTATION_ALLOWED) { in processCpbrCommand()
/packages/apps/Dialer/java/com/android/dialer/lettertile/
DLetterTileDrawable.java423 int numberPresentation, in getContactTypeFromPrimitives() argument
431 } else if (numberPresentation == TelecomManager.PRESENTATION_RESTRICTED) { in getContactTypeFromPrimitives()
/packages/services/Telephony/tests/src/com/android/phone/
DCnapTest.java62 assertEquals(PRESENTATION_UNKNOWN, mCallerInfo.numberPresentation); in assertIsUnknown()
/packages/services/Telephony/src/com/android/services/telephony/
DPstnIncomingCallNotifier.java162 && presentation == ccwi.numberPresentation) { in handleCdmaCallWaiting()
/packages/apps/Dialer/java/com/android/incallui/contactgrid/
DContactGridManager.java365 primaryInfo.numberPresentation(), in loadPhotoWithLegacy()
/packages/apps/Dialer/java/com/android/incallui/rtt/impl/
DRttChatFragment.java418 primaryInfo.numberPresentation(), in updateAvatar()