Home
last modified time | relevance | path

Searched refs:isAudioOnly (Results 1 – 4 of 4) sorted by relevance

/cts/tests/tests/telecom/src/android/telecom/cts/
DVideoProfileTest.java27 assertTrue(VideoProfile.isAudioOnly(VideoProfile.STATE_AUDIO_ONLY)); in testIsAudioOnly()
28 assertTrue(VideoProfile.isAudioOnly(VideoProfile.STATE_PAUSED)); in testIsAudioOnly()
30 assertFalse(VideoProfile.isAudioOnly(VideoProfile.STATE_BIDIRECTIONAL)); in testIsAudioOnly()
31 assertFalse(VideoProfile.isAudioOnly(VideoProfile.STATE_TX_ENABLED)); in testIsAudioOnly()
32 assertFalse(VideoProfile.isAudioOnly(VideoProfile.STATE_RX_ENABLED)); in testIsAudioOnly()
34 .isAudioOnly(VideoProfile.STATE_BIDIRECTIONAL | VideoProfile.STATE_PAUSED)); in testIsAudioOnly()
36 .isAudioOnly(VideoProfile.STATE_TX_ENABLED | VideoProfile.STATE_PAUSED)); in testIsAudioOnly()
38 .isAudioOnly(VideoProfile.STATE_RX_ENABLED | VideoProfile.STATE_PAUSED)); in testIsAudioOnly()
DBaseTelecomTestWithMockServices.java1097 if (!VideoProfile.isAudioOnly(videoState)) { in placeNewCallWithPhoneAccount()
/cts/tests/tests/media/src/android/media/cts/
DStreamingMediaPlayerTest.java592 boolean redirect, boolean isAudioOnly) throws Exception { in localHlsTest() argument
593 localHlsTest(name, null, null, appendQueryString, redirect, 10, -1, isAudioOnly); in localHlsTest()
596 private void localHlsTest(final String name, int playTime, int bitsPerMs, boolean isAudioOnly) in localHlsTest() argument
598 localHlsTest(name, null, null, false, false, playTime, bitsPerMs, isAudioOnly); in localHlsTest()
603 boolean isAudioOnly) throws Exception { in localHlsTest() argument
625 if (isAudioOnly) { in localHlsTest()
/cts/tests/tests/telephony/current/src/android/telephony/ims/cts/
DImsCallProfileTest.java249 assertTrue(VideoProfile.isAudioOnly(result)); in testGetVideoStateFromCallType()