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

1 2 3

  /frameworks/av/media/libmedia/
IRemoteDisplay.cpp 26 PAUSE,
38 virtual status_t pause() { function in class:android::BpRemoteDisplay
41 remote()->transact(PAUSE, data, &reply);
75 case PAUSE:
78 reply->writeInt32(pause());
IAudioTrack.cpp 37 PAUSE,
97 virtual void pause() function in class:android::BpAudioTrack
101 remote()->transact(PAUSE, data, &reply);
228 case PAUSE: {
230 pause();
IMediaPlayer.cpp 51 PAUSE,
241 status_t pause() function in class:android::BpMediaPlayer
245 remote()->transact(PAUSE, data, &reply);
557 case PAUSE: {
559 reply->writeInt32(pause());
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowVideoView.java 25 public static final int PAUSE = 3;
75 public void pause() { method in class:ShadowVideoView
77 currentState = ShadowVideoView.PAUSE;
93 return (currentState != ShadowVideoView.PAUSE &&
  /frameworks/base/drm/java/android/drm/
DrmStore.java 134 public static final int PAUSE = 0x02;
146 case PAUSE:
  /development/samples/Snake/src/com/example/android/snake/
Snake.java 74 mSnakeView.setMode(SnakeView.PAUSE);
107 // Pause the game along with the activity
108 mSnakeView.setMode(SnakeView.PAUSE);
SnakeView.java 44 public static final int PAUSE = 0;
243 setMode(PAUSE);
273 if (mMode == PAUSE) {
345 if (newMode == PAUSE) {
  /cts/tests/tests/telephony/src/android/telephony/cts/
PhoneNumberUtilsTest.java 51 String.format("1 (700).555-41%c1234", PhoneNumberUtils.PAUSE)));
58 assertEquals(String.format("%c1234", PhoneNumberUtils.PAUSE),
60 String.format("+1 (700).555-41NN%c1234", PhoneNumberUtils.PAUSE)));
64 assertEquals(String.format("%c1234%c%cN", PhoneNumberUtils.WAIT, PhoneNumberUtils.PAUSE,
68 PhoneNumberUtils.PAUSE,
284 c = PhoneNumberUtils.PAUSE;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaConnection.java 565 // will be released after any pause-dial is completed
592 } else if (c == PhoneNumberUtils.PAUSE) {
593 setPostDialState(PostDialState.PAUSE);
596 // pause again for 2 seconds before sending any
623 int pIndex = subStr.indexOf(PhoneNumberUtils.PAUSE);
673 // We were holding a wake lock until pause-dial was complete, so give it up now
760 s == PostDialState.PAUSE) {
798 return c == PhoneNumberUtils.PAUSE;
805 // This function is to find the next PAUSE character index if
806 // multiple pauses in a row. Otherwise it finds the next non PAUSE o
    [all...]
  /frameworks/av/include/drm/
drm_framework_common.h 142 static const int PAUSE = 0x02;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphRunner.java 46 private static final Event PAUSE_EVENT = new Event(Event.PAUSE, null);
94 public static final int PAUSE = 6;
144 case Event.PAUSE:
700 public void pause() { method in class:GraphRunner
932 /** Like pause(), but closes all filters. Can be resumed using restart(). */
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
PlaybackControlsRow.java 159 * An action displaying icons for play and pause.
168 * Action index for the pause icon.
170 public static int PAUSE = 1;
181 drawables[PAUSE] = getStyledDrawable(context,
187 labels[PAUSE] = context.getString(R.string.lb_playback_controls_pause);
  /external/libvpx/libvpx/vp8/common/
threading.h 87 #define pause(voidpara) __asm PAUSE macro
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
VideoViewTest.java 116 view.pause();
119 assertThat(shadowVideoView.getCurrentVideoState(), equalTo(ShadowVideoView.PAUSE));
127 view.pause();
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
threading.h 87 #define pause(voidpara) __asm PAUSE macro
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 55 * 'p' --- GSM pause character, same as comma
59 public static final char PAUSE = ',';
111 /** True if c is ISO-LATIN characters 0-9, *, # , +, WILD, WAIT, PAUSE */
115 || c == WILD || c == WAIT || c == PAUSE;
119 * post-dial string (eg this is PAUSE or WAIT)
123 return c == PAUSE || c == WAIT;
203 * separators (pause or wait), but without non-dialable characters.
318 * Converts pause and tonewait pause characters
320 * RFC 3601 says pause is 'p' and tonewait is 'w'
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Connection.java 378 PAUSE /* The post dial string playback is pausing for a
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
DialpadFragment.java 153 private static final char PAUSE = ',';
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
PlaybackControlGlue.java 28 * playback control actions such as play/pause, fast forward/rewind at progressive speed levels,
93 * The adapter key for the play/pause control.
693 PlaybackControlsRow.PlayPauseAction.PAUSE;
795 * Pause playback.
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmConnection.java 553 } else if (c == PhoneNumberUtils.PAUSE) {
564 // the UE shall pause again for 3 seconds ( 20 ) before sending
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneConnection.java 382 } else if (c == PhoneNumberUtils.PAUSE) {
393 // the UE shall pause again for 3 seconds ( 20 ) before sending
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp 510 void NuPlayer::GenericSource::pause() { function in class:android::NuPlayer::GenericSource
512 setDrmPlaybackStatusIfNeeded(Playback::PAUSE, 0);
    [all...]
  /frameworks/av/media/libstagefright/
AwesomePlayer.cpp 1264 status_t AwesomePlayer::pause() { function in class:android::AwesomePlayer
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 553 // BT does want PAUSE/WAIT conversion while it doesn't want the
559 // 'p' and 'w' are the standard characters for pause and
564 .replace(PhoneNumberUtils.PAUSE, 'p').replace(PhoneNumberUtils.WAIT,
    [all...]
  /external/netperf/
nettest_sctp.c 671 /* zero means that we never pause, so we never should need the */
    [all...]

Completed in 655 milliseconds

1 2 3