/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/telephony/ |
D | BluetoothCall.java | 214 public Call.Details getDetails() { in getDetails() method in BluetoothCall 215 return mCall.getDetails(); in getDetails() 256 return mCall.getDetails().getContactDisplayName(); in getContactDisplayName() 260 return mCall.getDetails().getAccountHandle(); in getAccountHandle() 264 return mCall.getDetails().getVideoState(); in getVideoState() 268 return mCall.getDetails().getCallerDisplayName(); in getCallerDisplayName() 282 .isSilentRingingRequested(getDetails().getExtras()); in isSilentRingingRequested() 286 return getDetails().hasProperty(Call.Details.PROPERTY_CONFERENCE); in isConference() 290 return getDetails().can(capability); in can() 294 return getDetails().getHandle(); in getHandle() [all …]
|
/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/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/Launcher/app/src/com/android/car/carlauncher/homescreen/audio/ |
D | InCallModel.java | 172 Bundle extras = mCurrentCall.getDetails().getExtras(); in getIntent() 231 @Call.CallState int callState = call.getDetails().getState(); in onCallAdded() 315 contactName = mCurrentCall.getDetails().getCallerDisplayName(); in updateModelWithContact() 317 contactName = mCurrentCall.getDetails().getContactDisplayName(); in updateModelWithContact() 357 @Call.CallState int callState = call.getDetails().getState(); in handleActiveCall() 358 CallDetail callDetails = CallDetail.fromTelecomCallDetail(call.getDetails()); in handleActiveCall() 393 mCurrentCall != null ? mCurrentCall.getDetails().getConnectTimeMillis() in createPhoneCardContent() 434 Call.Details callDetails = mCurrentCall == null ? null : mCurrentCall.getDetails(); in getCallingAppPackageName() 443 && mCurrentCall.getDetails().hasProperty(Call.Details.PROPERTY_SELF_MANAGED); in isSelfManagedCall()
|
/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/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 | 260 int priority = call.getDetails() in onCreate() 262 Location location = call.getDetails() in onCreate() 264 String subject = call.getDetails() in onCreate() 266 boolean isBusiness = call.getDetails() in onCreate() 268 String businessName = call.getDetails() in onCreate()
|
/packages/apps/Car/Launcher/app/src/com/android/car/carlauncher/homescreen/audio/dialer/ |
D | DialerCardModel.java | 59 CallDetail callDetails = CallDetail.fromTelecomCallDetail(call.getDetails()); in handleActiveCall() 62 CallDetail.fromTelecomCallDetail(call.getDetails()).getScoState()); in handleActiveCall()
|
/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/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 | MediaSet.java | 178 public MediaDetails getDetails() { in getDetails() method in MediaSet 179 MediaDetails details = super.getDetails(); in getDetails()
|
D | UriImage.java | 252 public MediaDetails getDetails() { in getDetails() method in UriImage 253 MediaDetails details = super.getDetails(); in getDetails()
|
D | LocalVideo.java | 222 public MediaDetails getDetails() { in getDetails() method in LocalVideo 223 MediaDetails details = super.getDetails(); in getDetails()
|
/packages/apps/Car/SystemUI/src/com/android/systemui/car/ndo/ |
D | InCallLiveData.java | 131 int callState = call.getDetails().getState(); in getSelfManagedCallAppPackageName() 136 CallDetail callDetails = CallDetail.fromTelecomCallDetail(call.getDetails()); in getSelfManagedCallAppPackageName()
|
/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
|
D | ParticipantListItemData.java | 66 public String getDetails() { in getDetails() method in ParticipantListItemData
|
/packages/apps/Dialer/java/com/android/dialer/calllog/ui/ |
D | PromotionCardViewHolder.java | 49 cardDetailsView.setText(promotion.getDetails()); in PromotionCardViewHolder()
|
/packages/apps/Dialer/java/com/android/incallui/latencyreport/ |
D | LatencyReport.java | 71 Bundle extras = telecomCall.getDetails().getIntentExtras(); in LatencyReport()
|
/packages/apps/Dialer/java/com/android/dialer/promotion/impl/ |
D | RttPromotion.java | 66 public CharSequence getDetails() { in getDetails() method in RttPromotion
|