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

  /system/core/nexus/
DhcpEvent.h 23 static const int STOP = 1;
  /frameworks/base/media/libmedia/
IAudioRecord.cpp 34 STOP
58 virtual void stop() function in class:android::BpAudioRecord
62 remote()->transact(STOP, data, &reply);
96 case STOP: {
98 stop();
IAudioTrack.cpp 34 STOP,
61 virtual void stop() function in class:android::BpAudioTrack
65 remote()->transact(STOP, data, &reply);
121 case STOP: {
123 stop();
IMediaPlayer.cpp 33 STOP,
91 status_t stop() function in class:android::BpMediaPlayer
95 remote()->transact(STOP, data, &reply);
255 case STOP: {
257 reply->writeInt32(stop());
IMediaRecorder.cpp 34 STOP,
230 status_t stop() function in class:android::BpMediaRecorder
232 LOGV("stop");
235 remote()->transact(STOP, data, &reply);
299 case STOP: {
300 LOGV("STOP");
302 reply->writeInt32(stop());
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
LineEvent.java 40 public static final Type STOP = new Type("Stop"); //$NON-NLS-1$
  /external/opencore/codecs_v2/audio/mp3/dec/src/
pvmp3_imdct_synth.cpp 66 stop window
121 #define STOP 3
260 case STOP:
  /external/openssl/crypto/bn/
bnspeed.c 126 #define STOP 1
200 tm=Time_F(STOP);
213 tm=Time_F(STOP);
228 tm=Time_F(STOP);
expspeed.c 152 #define STOP 1
307 tm=Time_F(STOP);
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_imdct_synth.cpp 66 stop window
121 #define STOP 3
260 case STOP:
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
ShortMessage.java 52 public static final int STOP = 252;
  /external/openssl/crypto/des/
speed.c 141 #define STOP 1
212 d=Time_F(STOP);
233 d=Time_F(STOP);
250 d=Time_F(STOP);
266 d=Time_F(STOP);
287 d=Time_F(STOP);
301 e=Time_F(STOP);
des_opts.c 358 #define STOP 1
410 tm[index]=Time_F(STOP); \
461 d=Time_F(STOP);
  /external/openssl/crypto/rc2/
rc2speed.c 136 #define STOP 1
205 d=Time_F(STOP);
229 d=Time_F(STOP);
249 d=Time_F(STOP);
265 d=Time_F(STOP);
  /external/openssl/crypto/rc4/
rc4speed.c 136 #define STOP 1
205 d=Time_F(STOP);
228 d=Time_F(STOP);
241 d=Time_F(STOP);
  /external/openssl/apps/
s_time.c 371 #define STOP 1
553 totalTime += tm_Time_F(STOP); /* Add the time for this iteration */
643 totalTime += tm_Time_F(STOP); /* Add the time for this iteration*/
speed.c 337 #define STOP 1
    [all...]
  /frameworks/base/media/java/android/media/
AsyncPlayer.java 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() { method in class:AsyncPlayer
    [all...]
  /frameworks/base/services/java/com/android/server/
NotificationPlayer.java 45 private static final int STOP = 2;
172 case STOP:
173 if (mDebug) Log.d(mTag, "STOP");
177 Log.w(mTag, "Notification stop delayed by " + delay + "msecs");
179 mPlayer.stop();
189 Log.w(mTag, "STOP command without a player");
236 private int mState = STOP;
254 * Calling this before another audio file is done playing will stop
279 * Stop a previously played sound. It can't be played again or unpaused
282 public void stop() { method in class:NotificationPlayer
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
MediaModel.java 65 STOP,
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 297 * permitted to start and not permitted to stop. The value may be
308 * STOP: Don't accept new tasks, don't process queued tasks,
321 * (RUNNING or SHUTDOWN) -> STOP
325 * STOP -> TIDYING
347 private static final int STOP = 1 << COUNT_BITS;
601 * @param targetState the desired state, either SHUTDOWN or STOP
615 * and queue empty) or (STOP and pool empty). If otherwise
758 if (runStateLessThan(ctl.get(), STOP) &&
760 runStateAtLeast(ctl.get(), STOP))
    [all...]
  /external/grub/netboot/
depca.c 288 #define STOP 0x0004 /* Stop */
472 outw(STOP, DEPCA_DATA)
545 if (inw(DEPCA_DATA) != STOP)
547 printf("depca: Cannot stop NIC\n");
660 ** Stop the search IMMEDIATELY after the signature is found so that the
693 if (inw(DEPCA_DATA) != STOP)
  /external/sonivox/jet_tools/JetCreator/
midifile.py 72 STOP = 0xfc
83 STOP,
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 60 STOP,
284 return mAction == SmilPlayerAction.STOP;
341 public synchronized void stop() { method in class:SmilPlayer
343 mAction = SmilPlayerAction.STOP;
471 Log.v(TAG, "[STOP] " + " at " + mCurrentTime
528 Log.v(TAG, "[STOP] " + " at " + mCurrentTime + " "
547 // Stop any started entries, and skip the not started entries until

Completed in 1376 milliseconds