Lines Matching refs:STOP
35 private static final int STOP = 2;
99 case STOP:
100 if (mDebug) Log.d(mTag, "STOP");
104 Log.w(mTag, "Notification stop delayed by " + delay + "msecs");
106 mPlayer.stop();
110 Log.w(mTag, "STOP command without a player");
137 private int mState = STOP;
155 * Calling this before another audio file is done playing will stop
180 * Stop a previously played sound. It can't be played again or unpaused
183 public void stop() {
185 // This check allows stop to be called multiple times without starting
187 if (mState != STOP) {
190 cmd.code = STOP;
192 mState = STOP;
207 * We want to hold a wake lock while we do the prepare and play. The stop probably is