/packages/apps/InCallUI/src/com/android/incallui/ |
D | CallUtils.java | 38 return call != null && isVideoCall(call.getVideoState()); in isVideoCall() 68 return call != null && VideoProfile.isAudioOnly(call.getVideoState()); in isAudioCall() 78 Preconditions.checkState(!VideoProfile.isAudioOnly(call.getVideoState())); in makeVideoPauseProfile() 79 return new VideoProfile(getPausedVideoState(call.getVideoState())); in makeVideoPauseProfile() 84 return new VideoProfile(getUnPausedVideoState(call.getVideoState())); in makeVideoUnPauseProfile()
|
D | InCallVideoCallCallback.java | 52 int previousVideoState = CallUtils.getUnPausedVideoState(mCall.getVideoState()); in onSessionModifyRequestReceived() 53 int newVideoState = CallUtils.getUnPausedVideoState(videoProfile.getVideoState()); in onSessionModifyRequestReceived() 98 boolean modifySucceeded = requestedProfile.getVideoState() == in onSessionModifyResponseReceived() 99 responseProfile.getVideoState(); in onSessionModifyResponseReceived() 100 boolean isVideoCall = CallUtils.isVideoCall(responseProfile.getVideoState()); in onSessionModifyResponseReceived()
|
D | VideoCallPresenter.java | 463 final boolean hasVideoStateChanged = mCurrentVideoState != call.getVideoState(); in checkForVideoStateChange() 469 + VideoProfile.videoStateToString(call.getVideoState())); in checkForVideoStateChange() 510 showVideoUi(call.getVideoState(), call.getState()); in checkForCallStateChange() 553 mCurrentVideoState = call.getVideoState(); in updateCallCache() 643 return mPrimaryCall != null ? isCameraRequired(mPrimaryCall.getVideoState()) : false; in isCameraRequired() 652 int newVideoState = call.getVideoState(); in enterVideoMode() 1159 cameraDir = toCameraDirection(call.getVideoState()); in updateCameraSelection() 1172 cameraDir = toCameraDirection(call.getVideoState()); in updateCameraSelection() 1184 cameraDir = toCameraDirection(call.getVideoState()); in updateCameraSelection()
|
D | Call.java | 587 public int getVideoState() { in getVideoState() method in Call 588 return mTelecommCall.getDetails().getVideoState(); in getVideoState() 593 CallUtils.isVideoCall(getVideoState()); in isVideoCall() 603 if (videoState == getVideoState()) { in setSessionModificationTo() 700 VideoProfile.videoStateToString(mTelecommCall.getDetails().getVideoState()), in toString()
|
D | VideoPauseController.java | 59 mVideoState = call.getVideoState(); in update() 66 public int getVideoState() { in getVideoState() method in VideoPauseController.CallContext 410 return callContext != null && CallUtils.isVideoCall(callContext.getVideoState()); in isVideoCall()
|
D | CallButtonPresenter.java | 268 int currVideoState = mCall.getVideoState(); in changeToVideoClicked() 317 mCall.getVideoState() & ~VideoProfile.STATE_TX_ENABLED); in pauseVideoClicked() 324 mCall.getVideoState() | VideoProfile.STATE_TX_ENABLED); in pauseVideoClicked()
|
D | AnswerPresenter.java | 181 final int currentVideoState = call.getVideoState(); in processVideoUpgradeRequestCall() 288 if (VideoProfile.isBidirectional((call.getVideoState()))) { in configureAnswerTargetsForSms()
|
D | CallCardPresenter.java | 382 mPrimary.getVideoState(), in updatePrimaryCallState()
|
D | InCallPresenter.java | 743 new VideoProfile(call.getVideoState()); in declineUpgradeRequest()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | InCallToneMonitor.java | 102 int previousVideoState = call.getVideoState(); in onSessionModifyRequestReceived() 103 int newVideoState = videoProfile.getVideoState(); in onSessionModifyRequestReceived()
|
D | BluetoothPhoneServiceImpl.java | 93 mCallsManager.answerCall(call, call.getVideoState()); 454 mCallsManager.answerCall(ringingCall, ringingCall.getVideoState()); in processChld() 467 mCallsManager.answerCall(ringingCall, ringingCall.getVideoState()); in processChld()
|
D | CallsManager.java | 408 int videoState = videoProfile != null ? videoProfile.getVideoState() : in onSessionModifyRequestReceived() 454 if (VideoProfile.isVideo(call.getVideoState())) { in hasVideoCall() 1061 ringingCall.answer(ringingCall.getVideoState()); in onMediaButton() 1217 call.setVideoState(parcelableConference.getVideoState()); in createConferenceCall()
|
D | Call.java | 444 getVideoStateDescription(getVideoState()), in toString() 910 setVideoState(connection.getVideoState()); in handleCreateConnectionSuccess() 1564 public int getVideoState() { in getVideoState() method in Call
|
D | InCallController.java | 675 call.getVideoState(), in toParcelableCall()
|
D | TelecomServiceImpl.java | 1034 call.answer(call.getVideoState()); in acceptRingingCallInternal()
|
D | ConnectionServiceWrapper.java | 675 call.getVideoState()), in createConnection()
|
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/ |
D | TestCallList.java | 47 "onSessionModifyRequestReceived: videoState = " + videoProfile.getVideoState() in onSessionModifyRequestReceived() 56 + responseProfile.getVideoState() in onSessionModifyResponseReceived()
|
D | TestVideoProvider.java | 157 requestProfile.getVideoState(), requestProfile.getQuality()); in onSendSessionModifyRequest() 158 mConnection.setVideoState(requestProfile.getVideoState()); in onSendSessionModifyRequest()
|
D | TestConnectionService.java | 327 originalRequest.getVideoState()); in onCreateOutgoingConnection() 328 connection.setVideoState(originalRequest.getVideoState()); in onCreateOutgoingConnection()
|
D | TestConnectionManager.java | 131 setVideoState(mRemote.getVideoState()); in TestManagedConnection()
|
/packages/services/Telephony/src/com/android/services/telephony/ |
D | ImsConference.java | 339 public int getVideoState() { in getVideoState() method in ImsConference 341 return mConferenceHost.getVideoState(); in getVideoState()
|
D | TelephonyConnectionService.java | 255 connection.setVideoState(request.getVideoState()); in onCreateOutgoingConnection() 432 phone.dial(number, null, request.getVideoState(), request.getExtras()); in placeOutgoingConnection()
|
D | TelephonyConnection.java | 620 setVideoState(mOriginalConnection.getVideoState()); in setOriginalConnection()
|
/packages/services/Telephony/sip/src/com/android/services/telephony/sip/ |
D | SipConnectionService.java | 262 phone.dial(number, request.getVideoState()); in startCallWithPhone()
|