Searched defs:ACTION_PAUSE (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DRequestUtils.java29 public static final String ACTION_PAUSE = "com.android.onemedia.pause"; field in class:RequestUtils
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaControlIntent.java233 * <li>{@link #ACTION_PAUSE Pause}: Pauses playback of the queue.
468 * @see #ACTION_PAUSE
671 public static final String ACTION_PAUSE = "android.media.intent.action.PAUSE"; field in class:MediaControlIntent
680 * Reverses the effects of {@link #ACTION_PAUSE}.
704 * @see #ACTION_PAUSE
942 * @see #ACTION_PAUSE
956 * {@link #ACTION_PAUSE}, and {@link #ACTION_GET_SESSION_STATUS}
971 * @see #ACTION_PAUSE
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaNotificationManager.java52 public static final String ACTION_PAUSE = "com.example.android.supportv4.media.pause"; field in class:MediaNotificationManager
87 new Intent(ACTION_PAUSE).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT);
116 filter.addAction(ACTION_PAUSE);
150 case ACTION_PAUSE:
/frameworks/support/media-compat/ics/android/support/v4/media/session/
H A DMediaSessionCompatApi14.java48 private static final long ACTION_PAUSE = 1 << 1; field in class:MediaSessionCompatApi14
137 if ((actions & ACTION_PAUSE) != 0) {
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DMediaNotificationManager.java52 public static final String ACTION_PAUSE = "com.example.android.supportv4.media.pause"; field in class:MediaNotificationManager
87 new Intent(ACTION_PAUSE).setPackage(pkg), PendingIntent.FLAG_CANCEL_CURRENT);
116 filter.addAction(ACTION_PAUSE);
150 case ACTION_PAUSE:
/frameworks/base/media/java/android/media/session/
H A DPlaybackState.java44 @IntDef(flag=true, value={ACTION_STOP, ACTION_PAUSE, ACTION_PLAY, ACTION_REWIND,
64 public static final long ACTION_PAUSE = 1 << 1; field in class:PlaybackState
415 * <li> {@link PlaybackState#ACTION_PAUSE}</li>
594 return ACTION_PAUSE;
622 case (int) ACTION_PAUSE:
949 * <li> {@link PlaybackState#ACTION_PAUSE}</li>
/frameworks/support/media-compat/java/android/support/v4/media/session/
H A DPlaybackStateCompat.java48 @IntDef(flag=true, value={ACTION_STOP, ACTION_PAUSE, ACTION_PLAY, ACTION_REWIND,
60 @IntDef({ACTION_STOP, ACTION_PAUSE, ACTION_PLAY, ACTION_REWIND, ACTION_SKIP_TO_PREVIOUS,
77 public static final long ACTION_PAUSE = 1 << 1; field in class:PlaybackStateCompat
312 * <li>{@link PlaybackStateCompat#ACTION_PAUSE}</li>
328 } else if (action == ACTION_PAUSE) {
479 * <li> {@link PlaybackStateCompat#ACTION_PAUSE}</li>
989 * <li> {@link PlaybackStateCompat#ACTION_PAUSE}</li>

Completed in 388 milliseconds