Home | History | Annotate | Download | only in media

Lines Matching refs:STOP

45     private static final int STOP = 2;
231 case STOP:
232 if (DEBUG) Log.d(mTag, "STOP");
236 Log.w(mTag, "Notification stop delayed by " + delay + "msecs");
238 mPlayer.stop();
243 if (DEBUG) { Log.d(mTag, "in STOP: abandonning AudioFocus"); }
252 if (DEBUG) { Log.d(mTag, "in STOP: quitting looper "+ mLooper); }
257 Log.w(mTag, "STOP command without a player");
328 private int mState = STOP;
346 * Calling this before another audio file is done playing will stop
377 * Calling this before another audio file is done playing will stop
403 * Stop a previously played sound. It can't be played again or unpaused
406 public void stop() {
407 if (DEBUG) { Log.d(mTag, "stop"); }
409 // This check allows stop to be called multiple times without starting
411 if (mState != STOP) {
414 cmd.code = STOP;
416 mState = STOP;
432 * We want to hold a wake lock while we do the prepare and play. The stop probably is