Home
last modified time | relevance | path

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

/cts/tests/tests/telecom/src/android/telecom/cts/
DDataObjectUnitTests.java284 VideoProfile videoProfile = new VideoProfile(VideoProfile.STATE_BIDIRECTIONAL, in testVideoProfile() local
286 assertEquals(VideoProfile.STATE_BIDIRECTIONAL, videoProfile.getVideoState()); in testVideoProfile()
287 assertEquals(VideoProfile.QUALITY_HIGH, videoProfile.getQuality()); in testVideoProfile()
288 assertEquals(0, videoProfile.describeContents()); in testVideoProfile()
289 assertEquals("Audio Tx Rx", VideoProfile.videoStateToString(videoProfile.getVideoState())); in testVideoProfile()
293 videoProfile.writeToParcel(p, 0); in testVideoProfile()
296 assertEquals(videoProfile.getQuality(), unparcelled.getQuality()); in testVideoProfile()
297 assertEquals(videoProfile.getVideoState(), unparcelled.getVideoState()); in testVideoProfile()
DMockVideoCallCallback.java49 public void onSessionModifyRequestReceived(VideoProfile videoProfile) { in onSessionModifyRequestReceived() argument
50 mRequestProfile = videoProfile; in onSessionModifyRequestReceived()
DVideoCallTest.java937 VideoProfile videoProfile = videoCallCallback.getResponseProfile(); in assertResponseVideoProfileReceived()
938 return videoProfile == null ? -1 : videoProfile.getVideoState(); in assertResponseVideoProfileReceived()
966 VideoProfile videoProfile = videoCallCallback.getRequestProfile(); in assertRequestVideoProfileReceived()
967 return videoProfile == null ? -1 : videoProfile.getVideoState(); in assertRequestVideoProfileReceived()
DRemoteConnectionTest.java683 VideoProfile videoProfile) { in testRemoteConnectionVideoCallbacks_SessionModify()
684 super.onSessionModifyRequestReceived(videoProvider, videoProfile); in testRemoteConnectionVideoCallbacks_SessionModify()
685 callbackInvoker.invoke(videoProvider, videoProfile); in testRemoteConnectionVideoCallbacks_SessionModify()
700 VideoProfile videoProfile = new VideoProfile(VideoProfile.STATE_BIDIRECTIONAL); in testRemoteConnectionVideoCallbacks_SessionModify() local
702 mockVideoProvider.sendMockSessionModifyRequest(videoProfile); in testRemoteConnectionVideoCallbacks_SessionModify()
705 assertEquals(videoProfile, callbackInvoker.getArgs(0)[1]); in testRemoteConnectionVideoCallbacks_SessionModify()
962 VideoProfile videoProfile) { in testRemoteConnectionVideo_SendSessionModifyRequest()
963 super.onSessionModifyRequestReceived(videoProvider, videoProfile); in testRemoteConnectionVideo_SendSessionModifyRequest()
964 callbackInvoker.invoke(videoProvider, videoProfile); in testRemoteConnectionVideo_SendSessionModifyRequest()
/cts/tests/camera/src/android/hardware/camera2/cts/
DExtendedCameraCharacteristicsTest.java551 CamcorderProfile videoProfile = CamcorderProfile.get(idx, profile); in verifyRecommendedVideoConfiguration() local
552 Size profileSize = new Size(videoProfile.videoFrameWidth, in verifyRecommendedVideoConfiguration()
553 videoProfile.videoFrameHeight); in verifyRecommendedVideoConfiguration()