Home
last modified time | relevance | path

Searched refs:getVideoState (Results 1 – 24 of 24) sorted by relevance

/packages/apps/InCallUI/src/com/android/incallui/
DCallUtils.java38 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()
DInCallVideoCallCallback.java52 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()
DVideoCallPresenter.java463 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()
DCall.java587 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()
DVideoPauseController.java59 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()
DCallButtonPresenter.java268 int currVideoState = mCall.getVideoState(); in changeToVideoClicked()
317 mCall.getVideoState() & ~VideoProfile.STATE_TX_ENABLED); in pauseVideoClicked()
324 mCall.getVideoState() | VideoProfile.STATE_TX_ENABLED); in pauseVideoClicked()
DAnswerPresenter.java181 final int currentVideoState = call.getVideoState(); in processVideoUpgradeRequestCall()
288 if (VideoProfile.isBidirectional((call.getVideoState()))) { in configureAnswerTargetsForSms()
DCallCardPresenter.java382 mPrimary.getVideoState(), in updatePrimaryCallState()
DInCallPresenter.java743 new VideoProfile(call.getVideoState()); in declineUpgradeRequest()
/packages/services/Telecomm/src/com/android/server/telecom/
DInCallToneMonitor.java102 int previousVideoState = call.getVideoState(); in onSessionModifyRequestReceived()
103 int newVideoState = videoProfile.getVideoState(); in onSessionModifyRequestReceived()
DBluetoothPhoneServiceImpl.java93 mCallsManager.answerCall(call, call.getVideoState());
454 mCallsManager.answerCall(ringingCall, ringingCall.getVideoState()); in processChld()
467 mCallsManager.answerCall(ringingCall, ringingCall.getVideoState()); in processChld()
DCallsManager.java408 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()
DCall.java444 getVideoStateDescription(getVideoState()), in toString()
910 setVideoState(connection.getVideoState()); in handleCreateConnectionSuccess()
1564 public int getVideoState() { in getVideoState() method in Call
DInCallController.java675 call.getVideoState(), in toParcelableCall()
DTelecomServiceImpl.java1034 call.answer(call.getVideoState()); in acceptRingingCallInternal()
DConnectionServiceWrapper.java675 call.getVideoState()), in createConnection()
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestCallList.java47 "onSessionModifyRequestReceived: videoState = " + videoProfile.getVideoState() in onSessionModifyRequestReceived()
56 + responseProfile.getVideoState() in onSessionModifyResponseReceived()
DTestVideoProvider.java157 requestProfile.getVideoState(), requestProfile.getQuality()); in onSendSessionModifyRequest()
158 mConnection.setVideoState(requestProfile.getVideoState()); in onSendSessionModifyRequest()
DTestConnectionService.java327 originalRequest.getVideoState()); in onCreateOutgoingConnection()
328 connection.setVideoState(originalRequest.getVideoState()); in onCreateOutgoingConnection()
DTestConnectionManager.java131 setVideoState(mRemote.getVideoState()); in TestManagedConnection()
/packages/services/Telephony/src/com/android/services/telephony/
DImsConference.java339 public int getVideoState() { in getVideoState() method in ImsConference
341 return mConferenceHost.getVideoState(); in getVideoState()
DTelephonyConnectionService.java255 connection.setVideoState(request.getVideoState()); in onCreateOutgoingConnection()
432 phone.dial(number, null, request.getVideoState(), request.getExtras()); in placeOutgoingConnection()
DTelephonyConnection.java620 setVideoState(mOriginalConnection.getVideoState()); in setOriginalConnection()
/packages/services/Telephony/sip/src/com/android/services/telephony/sip/
DSipConnectionService.java262 phone.dial(number, request.getVideoState()); in startCallWithPhone()