Home
last modified time | relevance | path

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

/cts/tests/tests/telecom/src/android/telecom/cts/
DMockConnection.java39 public int videoState = VideoProfile.STATE_AUDIO_ONLY; field in MockConnection
53 public void onAnswer(int videoState) { in onAnswer() argument
54 super.onAnswer(videoState); in onAnswer()
55 this.videoState = videoState; in onAnswer()
DBaseTelecomTestWithMockServices.java275 void placeAndVerifyCall(int videoState) { in placeAndVerifyCall() argument
276 placeAndVerifyCall(null, videoState); in placeAndVerifyCall()
291 void placeAndVerifyCall(Bundle extras, int videoState) { in placeAndVerifyCall() argument
297 placeNewCallWithPhoneAccount(extras, videoState); in placeAndVerifyCall()
461 private void placeNewCallWithPhoneAccount(Bundle extras, int videoState) { in placeNewCallWithPhoneAccount() argument
467 if (!VideoProfile.isAudioOnly(videoState)) { in placeNewCallWithPhoneAccount()
468 extras.putInt(TelecomManager.EXTRA_START_CALL_WITH_VIDEO_STATE, videoState); in placeNewCallWithPhoneAccount()
DConferenceTest.java410 private void assertVideoState(final Call call, final int videoState) { in assertVideoState() argument
415 return videoState; in assertVideoState()
424 "Call should be in videoState " + videoState in assertVideoState()
DVideoCallTest.java478 private void assertVideoState(final Call call, final int videoState) { in assertVideoState() argument
483 return videoState; in assertVideoState()
492 "Call should be in videoState " + videoState in assertVideoState()
DRemoteConnectionTest.java423 public void onVideoStateChanged(RemoteConnection connection, int videoState) { in testRemoteConnectionCallbacks_VideoState()
424 super.onVideoStateChanged(connection, videoState); in testRemoteConnectionCallbacks_VideoState()
425 callbackInvoker.invoke(connection, videoState); in testRemoteConnectionCallbacks_VideoState()
DExtendedInCallServiceTest.java227 VideoProfile.STATE_BIDIRECTIONAL, connection.videoState); in testAnswerIncomingCallAsVideo_SendsCorrectVideoState()