Home
last modified time | relevance | path

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

/packages/services/Telecomm/src/com/android/server/telecom/callredirection/
DCallRedirectionProcessor.java226 private final int mVideoState; field in CallRedirectionProcessor
290 mVideoState = videoState; in CallRedirectionProcessor()
317 mVideoState, mShouldCancelCall, mUiAction); in onCallRedirectionComplete()
327 mVideoState, mShouldCancelCall, mUiAction); in onCallRedirectionComplete()
375 mPhoneAccountHandle, mRedirectionGatewayInfo, mSpeakerphoneOn, mVideoState, in performCarrierCallRedirection()
/packages/services/Telecomm/src/com/android/server/telecom/
DCall.java377 private int mVideoState; field in Call
2312 mVideoStateHistory |= mVideoState; in deflect()
2358 mVideoStateHistory |= mVideoState; in reject()
2390 mVideoStateHistory |= mVideoState; in reject()
3311 return mVideoState; in getVideoState()
3352 int previousVideoState = mVideoState; in setVideoState()
3353 mVideoState = videoState; in setVideoState()
3354 if (mVideoState != previousVideoState) { in setVideoState()
3358 l.onVideoStateChanged(this, previousVideoState, mVideoState); in setVideoState()
3678 mVideoStateHistory = mVideoState; in updateVideoHistoryViaState()
[all …]
DCallsManager.java5108 private final int mVideoState;
5112 mVideoState = videoState;
5118 Log.d(this, "perform answer call for %s, videoState = %d", mCall, mVideoState);
5126 mCall.answer(mVideoState);
5137 mCall.answer(mVideoState);
5140 if (isSpeakerphoneAutoEnabledForVideoCalls(mVideoState)) {
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DConnectionServiceFixture.java76 int mVideoState = INVALID_VIDEO_STATE; field in ConnectionServiceFixture.FakeConnectionServiceDelegate
95 mVideoState == INVALID_VIDEO_STATE ? request.getVideoState() : mVideoState, in onCreateIncomingConnection()
DTelecomSystemTest.java908 connectionServiceFixture.mConnectionServiceDelegate.mVideoState = videoState; in startIncomingPhoneCall()