Home
last modified time | relevance | path

Searched refs:mVideoState (Results 1 – 6 of 6) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/voip/
DCallEventCallbackAckTransaction.java48 private int mVideoState = CallAttributes.AUDIO_CALL; field in CallEventCallbackAckTransaction
85 mVideoState = videoState; in CallEventCallbackAckTransaction()
116 mICallEventCallback.onAnswer(mCallId, mVideoState, receiver); in processTransaction()
/packages/services/Telecomm/src/com/android/server/telecom/callredirection/
DCallRedirectionProcessor.java264 private final int mVideoState; field in CallRedirectionProcessor
328 mVideoState = videoState; in CallRedirectionProcessor()
355 mVideoState, mShouldCancelCall, mUiAction); in onCallRedirectionComplete()
365 mVideoState, mShouldCancelCall, mUiAction); in onCallRedirectionComplete()
415 mPhoneAccountHandle, mRedirectionGatewayInfo, mSpeakerphoneOn, mVideoState, in performCarrierCallRedirection()
/packages/services/Telecomm/src/com/android/server/telecom/
DCall.java485 private int mVideoState; field in Call
2940 mVideoStateHistory |= mVideoState; in deflect()
2989 mVideoStateHistory |= mVideoState; in reject()
3027 mVideoStateHistory |= mVideoState; in reject()
4110 return mVideoState; in getVideoState()
4154 int previousVideoState = mVideoState; in setVideoState()
4155 mVideoState = videoState; in setVideoState()
4156 if (mVideoState != previousVideoState) { in setVideoState()
4162 l.onVideoStateChanged(this, previousVideoState, mVideoState); in setVideoState()
4167 int transactionalVS = VideoProfileStateToTransactionalVideoState(mVideoState); in setVideoState()
[all …]
DCallsManager.java6552 private final int mVideoState;
6556 mVideoState = videoState;
6562 Log.d(this, "perform answer call for %s, videoState = %d", mCall, mVideoState);
6570 mCall.answer(mVideoState);
6581 mCall.answer(mVideoState);
6584 if (isSpeakerphoneAutoEnabledForVideoCalls(mVideoState)) {
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DConnectionServiceFixture.java81 int mVideoState = INVALID_VIDEO_STATE; field in ConnectionServiceFixture.FakeConnectionServiceDelegate
100 mVideoState == INVALID_VIDEO_STATE ? request.getVideoState() : mVideoState, in onCreateIncomingConnection()
DTelecomSystemTest.java969 connectionServiceFixture.mConnectionServiceDelegate.mVideoState = videoState; in startIncomingPhoneCall()