HomeSort by relevance Sort by last modified time
    Searched refs:STATE_PAUSED (Results 1 - 25 of 55) sorted by null

1 2 3

  /cts/tests/tests/telecom/src/android/telecom/cts/
VideoProfileTest.java 28 assertTrue(VideoProfile.isAudioOnly(VideoProfile.STATE_PAUSED));
34 .isAudioOnly(VideoProfile.STATE_BIDIRECTIONAL | VideoProfile.STATE_PAUSED));
36 .isAudioOnly(VideoProfile.STATE_TX_ENABLED | VideoProfile.STATE_PAUSED));
38 .isAudioOnly(VideoProfile.STATE_RX_ENABLED | VideoProfile.STATE_PAUSED));
46 VideoProfile.STATE_PAUSED));
47 assertTrue(VideoProfile.isVideo(VideoProfile.STATE_RX_ENABLED | VideoProfile.STATE_PAUSED));
48 assertTrue(VideoProfile.isVideo(VideoProfile.STATE_TX_ENABLED | VideoProfile.STATE_PAUSED));
51 assertFalse(VideoProfile.isVideo(VideoProfile.STATE_PAUSED));
57 VideoProfile.STATE_PAUSED));
61 VideoProfile.STATE_PAUSED));
    [all...]
  /frameworks/wilhelm/tests/sandbox/
monkey.c 32 STATE_PAUSED,
59 return STATE_PAUSED;
206 _(STATE_PAUSED, actionDestroy, 1)
207 _(STATE_PAUSED, actionPause, 1)
208 _(STATE_PAUSED, actionPlay, 1)
209 _(STATE_PAUSED, actionRewind, 1)
210 _(STATE_PAUSED, actionSleep, 1)
211 _(STATE_PAUSED, actionStop, 1)
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
VideoUtils.java 102 return videoState & (~VideoProfile.STATE_PAUSED);
106 return videoState | VideoProfile.STATE_PAUSED;
  /frameworks/base/telecomm/java/android/telecom/
VideoProfile.java 66 STATE_PAUSED})
117 public static final int STATE_PAUSED = 0x4;
149 * {@link VideoProfile#STATE_PAUSED}.
317 return hasState(videoState, VideoProfile.STATE_PAUSED);