HomeSort by relevance Sort by last modified time
    Searched defs:PLAY (Results 1 - 6 of 6) sorted by null

  /external/webkit/WebKit/android/
RenderSkinMediaButton.h 51 enum { PAUSE, PLAY, MUTE, REWIND, FORWARD, BACKGROUND_SLIDER, SLIDER_TRACK, SLIDER_THUMB };
  /external/bluetooth/bluez/test/
hstest.c 140 "\thstest play <file> <bdaddr> [channel]\n"
144 #define PLAY 1
180 if (strncmp(argv[1], "play", 4) == 0) {
181 mode = PLAY;
206 case PLAY:
277 case PLAY:
  /frameworks/base/media/java/android/media/
AsyncPlayer.java 34 private static final int PLAY = 1;
95 case PLAY:
96 if (mDebug) Log.d(mTag, "PLAY");
159 * @param uri The URI to play. (see {@link MediaPlayer#setDataSource(Context, Uri)})
165 public void play(Context context, Uri uri, boolean looping, int stream) { method in class:AsyncPlayer
168 cmd.code = PLAY;
175 mState = PLAY;
207 * We want to hold a wake lock while we do the prepare and play. The stop probably is
210 * sound to play, but if the CPU turns off before mThread gets to work, it won't. The
215 * This must be called before the first time play is called
    [all...]
  /frameworks/base/services/java/com/android/server/
NotificationPlayer.java 44 private static final int PLAY = 1;
168 case PLAY:
169 if (mDebug) Log.d(mTag, "PLAY");
213 // if there are no more sounds to play, end the Looper to listen for media completion
258 * @param uri The URI to play. (see {@link MediaPlayer#setDataSource(Context, Uri)})
264 public void play(Context context, Uri uri, boolean looping, int stream) { method in class:NotificationPlayer
267 cmd.code = PLAY;
274 mState = PLAY;
306 * We want to hold a wake lock while we do the prepare and play. The stop probably is
309 * sound to play, but if the CPU turns off before mThread gets to work, it won't. Th
    [all...]
  /external/webkit/WebCore/platform/android/
RenderThemeAndroid.cpp 272 RenderSkinMediaButton::Draw(getCanvasFromInfo(paintInfo), rect, RenderSkinMediaButton::PLAY);
  /frameworks/base/core/java/android/webkit/
HTML5VideoViewProxy.java 65 private static final int PLAY = 100;
157 public static void play(String url, int time, HTML5VideoViewProxy proxy, method in class:HTML5VideoViewProxy.VideoPlayer
294 case PLAY: {
298 VideoPlayer.play(url, mSeekPosition, this, client);
538 * Play a video stream.
541 public void play(String url) { method in class:HTML5VideoViewProxy
545 Message message = obtainMessage(PLAY);

Completed in 272 milliseconds