Home
last modified time | relevance | path

Searched refs:getDetails (Results 1 – 25 of 46) sorted by relevance

12

/packages/apps/Dialer/java/com/android/incallui/videotech/ims/
DImsVideoTech.java69 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()
238 int unpausedVideoState = getUnpausedVideoState(call.getDetails().getVideoState()); in resumeTransmission()
[all …]
DImsVideoCallCallback.java62 int previousVideoState = ImsVideoTech.getUnpausedVideoState(call.getDetails().getVideoState()); in onSessionModifyRequestReceived()
157 if (VideoProfile.isVideo(call.getDetails().getVideoState())) { in getSessionModificationStateFromTelecomStatus()
/packages/apps/Dialer/java/com/android/incallui/call/
DDialerCall.java517 return telecomCall.getDetails().getStatusHints(); in getStatusHints()
598 setDisconnectCause(telecomCall.getDetails().getDisconnectCause()); in updateFromTelecomCall()
614 updateFromCallExtras(telecomCall.getDetails().getExtras()); in updateFromTelecomCall()
618 Uri newHandle = telecomCall.getDetails().getHandle(); in updateFromTelecomCall()
627 PhoneAccountHandle newPhoneAccountHandle = telecomCall.getDetails().getAccountHandle(); in updateFromTelecomCall()
810 return telecomCall == null ? null : telecomCall.getDetails().getHandle(); in getHandle()
912 return telecomCall == null ? -1 : telecomCall.getDetails().getHandlePresentation(); in getNumberPresentation()
916 return telecomCall == null ? -1 : telecomCall.getDetails().getCallerDisplayNamePresentation(); in getCnapNamePresentation()
921 return telecomCall == null ? null : getTelecomCall().getDetails().getCallerDisplayName(); in getCnapName()
925 return telecomCall.getDetails().getIntentExtras(); in getIntentExtras()
[all …]
DExternalCallList.java53 telecomCall.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL)); in onCallAdded()
106 if (!call.getDetails().hasProperty(CallCompat.Details.PROPERTY_IS_EXTERNAL_CALL)) { in notifyExternalCallUpdated()
DTelecomAdapter.java98 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/Car/Dialer/src/com/android/car/dialer/notification/
DInCallNotificationController.java98 CallDetail callDetail = CallDetail.fromTelecomCallDetail(call.getDetails()); in showInCallNotification()
124 call.getDetails().getTelecomCallId(), in showInCallNotification()
132 if (call.getDetails() != null) { in cancelInCallNotification()
133 mNotificationManager.cancel(call.getDetails().getTelecomCallId(), NOTIFICATION_ID); in cancelInCallNotification()
150 intent.putExtra(NotificationService.EXTRA_CALL_ID, call.getDetails().getTelecomCallId()); in getIntent()
DNotificationService.java88 if (call.getDetails() != null in answerCall()
89 && TextUtils.equals(call.getDetails().getTelecomCallId(), callId)) { in answerCall()
99 if (call.getDetails() != null in declineCall()
100 && TextUtils.equals(call.getDetails().getTelecomCallId(), callId)) { in declineCall()
/packages/apps/Dialer/java/com/android/dialer/telecom/
DTelecomCallUtil.java42 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/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DCallListAdapter.java105 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()
/packages/apps/Dialer/java/com/android/incallui/
DExternalCallNotifier.java230 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/
DLocalMediaItem.java83 public MediaDetails getDetails() { in getDetails() method in LocalMediaItem
84 MediaDetails details = super.getDetails(); in getDetails()
DUriImage.java251 public MediaDetails getDetails() { in getDetails() method in UriImage
252 MediaDetails details = super.getDetails(); in getDetails()
DMediaSet.java178 public MediaDetails getDetails() { in getDetails() method in MediaSet
179 MediaDetails details = super.getDetails(); in getDetails()
DLocalVideo.java218 public MediaDetails getDetails() { in getDetails() method in LocalVideo
219 MediaDetails details = super.getDetails(); in getDetails()
DLocalImage.java320 public MediaDetails getDetails() { in getDetails() method in LocalImage
321 MediaDetails details = super.getDetails(); in getDetails()
/packages/services/Car/tests/BugReportApp/src/com/google/android/car/bugreport/
DBugStorageUtils.java254 if (ex.getDetails().getError().equals(INVALID_GRANT) in getRootCauseMessage()
255 && ex.getDetails().getErrorDescription().contains(CLOCK_SKEW_ERROR)) { in getRootCauseMessage()
/packages/apps/Car/Dialer/tests/robotests/src/com/android/car/dialer/telecom/
DProjectionCallHandlerTest.java264 when(call.getDetails()).thenReturn(null); in call_withNullDetails_isNotSuppressed()
274 when(call.getDetails()).thenReturn(details); in createCall()
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
DVCardResourceEntry.java135 public String getDetails() { in getDisplayItem() method in VCardResourceEntry
363 public String getDetails() {
/packages/apps/Dialer/java/com/android/dialer/promotion/
DPromotion.java62 CharSequence getDetails(); in getDetails() method
/packages/apps/Dialer/java/com/android/contacts/common/compat/
DCallCompat.java29 && ((call.getDetails().getCallCapabilities() & Details.CAPABILITY_CAN_PULL_CALL) in canPullExternalCall()
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
DPersonItemData.java39 public abstract String getDetails(); in getDetails() method in PersonItemData
DParticipantListItemData.java66 public String getDetails() { in getDetails() method in ParticipantListItemData
/packages/apps/Dialer/java/com/android/dialer/calllog/ui/
DPromotionCardViewHolder.java49 cardDetailsView.setText(promotion.getDetails()); in PromotionCardViewHolder()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/activecall/
DIncomingCallFragment.java44 call == null ? null : CallDetail.fromTelecomCallDetail(call.getDetails()))); in onCreateView()
/packages/apps/Car/Dialer/src/com/android/car/dialer/livedata/
DCallDetailLiveData.java92 setValue(CallDetail.fromTelecomCallDetail(telecomCall.getDetails())); in setTelecomCallDetail()

12