Searched refs:videoProfile (Results 1 – 6 of 6) sorted by relevance
/cts/tests/tests/telephony/current/src/android/telephony/ims/cts/ |
D | ImsCallProfileTest.java | 263 VideoProfile videoProfile = new VideoProfile(VideoProfile.STATE_PAUSED); in testGetCallTypeFromVideoState() local 265 ImsCallProfile.getCallTypeFromVideoState(videoProfile.getVideoState())); in testGetCallTypeFromVideoState() 267 videoProfile = new VideoProfile(VideoProfile.STATE_TX_ENABLED); in testGetCallTypeFromVideoState() 269 ImsCallProfile.getCallTypeFromVideoState(videoProfile.getVideoState())); in testGetCallTypeFromVideoState() 271 videoProfile = new VideoProfile(VideoProfile.STATE_RX_ENABLED); in testGetCallTypeFromVideoState() 273 ImsCallProfile.getCallTypeFromVideoState(videoProfile.getVideoState())); in testGetCallTypeFromVideoState() 275 videoProfile = new VideoProfile(VideoProfile.STATE_RX_ENABLED in testGetCallTypeFromVideoState() 278 ImsCallProfile.getCallTypeFromVideoState(videoProfile.getVideoState())); in testGetCallTypeFromVideoState()
|
/cts/tests/tests/telecom/src/android/telecom/cts/ |
D | DataObjectUnitTests.java | 289 VideoProfile videoProfile = new VideoProfile(VideoProfile.STATE_BIDIRECTIONAL, in testVideoProfile() local 291 assertEquals(VideoProfile.STATE_BIDIRECTIONAL, videoProfile.getVideoState()); in testVideoProfile() 292 assertEquals(VideoProfile.QUALITY_HIGH, videoProfile.getQuality()); in testVideoProfile() 293 assertEquals(0, videoProfile.describeContents()); in testVideoProfile() 294 assertEquals("Audio Tx Rx", VideoProfile.videoStateToString(videoProfile.getVideoState())); in testVideoProfile() 298 videoProfile.writeToParcel(p, 0); in testVideoProfile() 301 assertEquals(videoProfile.getQuality(), unparcelled.getQuality()); in testVideoProfile() 302 assertEquals(videoProfile.getVideoState(), unparcelled.getVideoState()); in testVideoProfile()
|
D | MockVideoCallCallback.java | 49 public void onSessionModifyRequestReceived(VideoProfile videoProfile) { in onSessionModifyRequestReceived() argument 50 mRequestProfile = videoProfile; in onSessionModifyRequestReceived()
|
D | VideoCallTest.java | 938 VideoProfile videoProfile = videoCallCallback.getResponseProfile(); in assertResponseVideoProfileReceived() 939 return videoProfile == null ? -1 : videoProfile.getVideoState(); in assertResponseVideoProfileReceived() 967 VideoProfile videoProfile = videoCallCallback.getRequestProfile(); in assertRequestVideoProfileReceived() 968 return videoProfile == null ? -1 : videoProfile.getVideoState(); in assertRequestVideoProfileReceived()
|
D | RemoteConnectionTest.java | 683 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/ |
D | ExtendedCameraCharacteristicsTest.java | 554 CamcorderProfile videoProfile = CamcorderProfile.get(idx, profile); in verifyRecommendedVideoConfiguration() local 555 Size profileSize = new Size(videoProfile.videoFrameWidth, in verifyRecommendedVideoConfiguration() 556 videoProfile.videoFrameHeight); in verifyRecommendedVideoConfiguration()
|