/packages/apps/Bluetooth/src/com/android/bluetooth/telephony/ |
D | BluetoothCall.java | 180 return parent.getDetails().getTelecomCallId(); in getParentId() 205 public Call.Details getDetails() { in getDetails() method in BluetoothCall 206 return mCall.getDetails(); in getDetails() 243 return mCall.getGenericConferenceActiveChildCall().getDetails().getTelecomCallId(); in getGenericConferenceActiveChildCallId() 247 return mCall.getDetails().getContactDisplayName(); in getContactDisplayName() 251 return mCall.getDetails().getAccountHandle(); in getAccountHandle() 255 return mCall.getDetails().getVideoState(); in getVideoState() 259 return mCall.getDetails().getCallerDisplayName(); in getCallerDisplayName() 272 return getDetails().getExtras() != null in isSilentRingingRequested() 273 && getDetails().getExtras().getBoolean(Call.EXTRA_SILENT_RINGING_REQUESTED); in isSilentRingingRequested() [all …]
|
D | BluetoothInCallService.java | 224 onStateChanged(getBluetoothCallById(call.getDetails().getTelecomCallId()), state); in onStateChanged() 241 onDetailsChanged(getBluetoothCallById(call.getDetails().getTelecomCallId()), details); in onDetailsChanged() 262 getBluetoothCallById(call.getDetails().getTelecomCallId())); in onParentChanged() 285 getBluetoothCallById(call.getDetails().getTelecomCallId()), in onChildrenChanged() 529 BluetoothCall bluetoothCall = getBluetoothCallById(call.getDetails().getTelecomCallId()); in onCallRemoved()
|
/packages/apps/Dialer/java/com/android/incallui/videotech/ims/ |
D | ImsVideoTech.java | 69 if (VideoProfile.isVideo(call.getDetails().getVideoState())) { in isAvailable() 81 if (!call.getDetails().can(Call.Details.CAPABILITY_SUPPORTS_VT_LOCAL_TX)) { in isAvailable() 87 if (!call.getDetails().can(Call.Details.CAPABILITY_SUPPORTS_VT_REMOTE_RX)) { in isAvailable() 97 return VideoProfile.isVideo(call.getDetails().getVideoState()); in isTransmittingOrReceiving() 150 int newVideoState = call.getDetails().getVideoState(); in onCallStateChanged() 180 int unpausedVideoState = getUnpausedVideoState(call.getDetails().getVideoState()); in upgradeToVideo() 210 .sendSessionModifyResponse(new VideoProfile(call.getDetails().getVideoState())); in declineVideoRequest() 217 return VideoProfile.isTransmissionEnabled(call.getDetails().getVideoState()); in isTransmitting() 226 int unpausedVideoState = getUnpausedVideoState(call.getDetails().getVideoState()); in stopTransmission() 239 int unpausedVideoState = getUnpausedVideoState(call.getDetails().getVideoState()); in resumeTransmission() [all …]
|
D | ImsVideoCallCallback.java | 62 int previousVideoState = ImsVideoTech.getUnpausedVideoState(call.getDetails().getVideoState()); in onSessionModifyRequestReceived() 163 if (VideoProfile.isVideo(call.getDetails().getVideoState())) { in getSessionModificationStateFromTelecomStatus()
|
/packages/apps/Dialer/java/com/android/incallui/call/ |
D | DialerCall.java | 522 return telecomCall.getDetails().getStatusHints(); in getStatusHints() 603 setDisconnectCause(telecomCall.getDetails().getDisconnectCause()); in updateFromTelecomCall() 619 updateFromCallExtras(telecomCall.getDetails().getExtras()); in updateFromTelecomCall() 623 Uri newHandle = telecomCall.getDetails().getHandle(); in updateFromTelecomCall() 632 PhoneAccountHandle newPhoneAccountHandle = telecomCall.getDetails().getAccountHandle(); in updateFromTelecomCall() 815 return telecomCall == null ? null : telecomCall.getDetails().getHandle(); in getHandle() 917 return telecomCall == null ? -1 : telecomCall.getDetails().getHandlePresentation(); in getNumberPresentation() 921 return telecomCall == null ? -1 : telecomCall.getDetails().getCallerDisplayNamePresentation(); in getCnapNamePresentation() 926 return telecomCall == null ? null : getTelecomCall().getDetails().getCallerDisplayName(); in getCnapName() 930 return telecomCall.getDetails().getIntentExtras(); in getIntentExtras() [all …]
|
D | ExternalCallList.java | 53 telecomCall.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL)); in onCallAdded() 106 if (!call.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL)) { in notifyExternalCallUpdated()
|
D | TelecomAdapter.java | 98 if (call.getDetails().can(android.telecom.Call.Details.CAPABILITY_MERGE_CONFERENCE)) { in merge() 112 if (call.getDetails().can(android.telecom.Call.Details.CAPABILITY_SWAP_CONFERENCE)) { in swap()
|
/packages/apps/Dialer/java/com/android/dialer/telecom/ |
D | TelecomCallUtil.java | 42 Uri handle = call.getDetails().getHandle(); in isEmergencyCall() 55 if (call.getDetails().getGatewayInfo() != null) { in getNumber() 56 return call.getDetails().getGatewayInfo().getOriginalAddress().getSchemeSpecificPart(); in getNumber() 68 return call == null ? null : call.getDetails().getHandle(); in getHandle()
|
/packages/apps/Car/Dialer/src/com/android/car/dialer/notification/ |
D | NotificationService.java | 122 if (call.getDetails() != null && TextUtils.equals( in answerCall() 123 CallDetail.fromTelecomCallDetail(call.getDetails()).getNumber(), callId)) { in answerCall() 133 if (call.getDetails() != null && TextUtils.equals( in declineCall() 134 CallDetail.fromTelecomCallDetail(call.getDetails()).getNumber(), callId)) { in declineCall()
|
D | InCallNotificationController.java | 94 CallDetail callDetail = CallDetail.fromTelecomCallDetail(call.getDetails()); in showInCallNotification() 135 if (call.getDetails() != null) { in cancelInCallNotification() 136 String callNumber = CallDetail.fromTelecomCallDetail(call.getDetails()).getNumber(); in cancelInCallNotification() 174 CallDetail.fromTelecomCallDetail(call.getDetails()).getNumber()); in getIntent()
|
/packages/services/Telecomm/testapps/carmodedialer/src/com/android/server/telecom/carmodedialer/ |
D | CallListAdapter.java | 100 Uri handle = call.getDetails().getHandle(); in getView() 103 long durationMs = System.currentTimeMillis() - call.getDetails().getConnectTimeMillis(); in getView() 110 Log.i(TAG, "Call extras: " + extrasToString(call.getDetails().getExtras())); in getView() 111 Log.i(TAG, "Call intent extras: " + extrasToString(call.getDetails().getIntentExtras())); in getView()
|
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/ |
D | CallListAdapter.java | 105 Uri handle = call.getDetails().getHandle(); in getView() 108 long durationMs = System.currentTimeMillis() - call.getDetails().getConnectTimeMillis(); in getView() 115 Log.i(TAG, "Call extras: " + extrasToString(call.getDetails().getExtras())); in getView() 116 Log.i(TAG, "Call intent extras: " + extrasToString(call.getDetails().getIntentExtras())); in getView()
|
D | TestInCallUI.java | 258 int priority = call.getDetails() in onCreate() 260 Location location = call.getDetails() in onCreate() 262 String subject = call.getDetails() in onCreate() 264 boolean isBusiness = call.getDetails() in onCreate()
|
/packages/apps/Dialer/java/com/android/incallui/ |
D | ExternalCallNotifier.java | 230 boolean isVideoCall = VideoProfile.isVideo(info.getCall().getDetails().getVideoState()); in postNotification() 304 if (call.getDetails().hasProperty(android.telecom.Call.Details.PROPERTY_CONFERENCE) in getLargeIconToDisplay() 305 && !call.getDetails() in getLargeIconToDisplay() 349 if (call.getDetails().hasProperty(android.telecom.Call.Details.PROPERTY_CONFERENCE)) { in getContentTitle() 352 call.getDetails().hasProperty(android.telecom.Call.Details.PROPERTY_GENERIC_CONFERENCE)); in getContentTitle()
|
/packages/apps/Car/Dialer/framework/fake/src/com/android/car/dialer/framework/ |
D | MockCallManager.java | 207 CallDetail detail = CallDetail.fromTelecomCallDetail(call.getDetails()); in disconnect() 213 call.getDetails().getDisconnectCause().getCode() == DisconnectCause.MISSED in disconnect() 215 : call.getDetails().getCallDirection() + 1); in disconnect() 340 CallDetail detail = CallDetail.fromTelecomCallDetail(call.getDetails()); in findCallById() 510 when(mCall.getDetails()).thenReturn(mDetails); in updateCallDetails()
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
D | LocalMediaItem.java | 83 public MediaDetails getDetails() { in getDetails() method in LocalMediaItem 84 MediaDetails details = super.getDetails(); in getDetails()
|
D | UriImage.java | 251 public MediaDetails getDetails() { in getDetails() method in UriImage 252 MediaDetails details = super.getDetails(); in getDetails()
|
D | MediaSet.java | 178 public MediaDetails getDetails() { in getDetails() method in MediaSet 179 MediaDetails details = super.getDetails(); in getDetails()
|
D | LocalVideo.java | 218 public MediaDetails getDetails() { in getDetails() method in LocalVideo 219 MediaDetails details = super.getDetails(); in getDetails()
|
D | LocalImage.java | 320 public MediaDetails getDetails() { in getDetails() method in LocalImage 321 MediaDetails details = super.getDetails(); in getDetails()
|
/packages/apps/Car/Dialer/tests/unittests/src/com/android/car/dialer/telecom/ |
D | ProjectionCallHandlerTest.java | 307 when(call.getDetails()).thenReturn(null); in call_withNullDetails_isNotSuppressed() 317 when(call.getDetails()).thenReturn(details); in createCall()
|
/packages/apps/Dialer/java/com/android/dialer/promotion/ |
D | Promotion.java | 62 CharSequence getDetails(); in getDetails() method
|
/packages/apps/Dialer/java/com/android/contacts/common/compat/ |
D | CallCompat.java | 29 && ((call.getDetails().getCallCapabilities() & Details.CAPABILITY_CAN_PULL_CALL) in canPullExternalCall()
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/ |
D | PersonItemData.java | 39 public abstract String getDetails(); in getDetails() method in PersonItemData
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
D | VCardResourceEntry.java | 135 public String getDetails() { in getDisplayItem() method in VCardResourceEntry 363 public String getDetails() {
|