HomeSort by relevance Sort by last modified time
    Searched refs:STOP (Results 1 - 25 of 57) sorted by null

1 2 3

  /system/core/nexus/
DhcpEvent.h 23 static const int STOP = 1;
DhcpEvent.cpp 27 else if (val == DhcpEvent::STOP)
28 strncpy(buffer, "STOP", max);
44 else if (!strcasecmp(buffer, "STOP"))
45 return DhcpEvent::STOP;
  /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/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,
62 virtual void stop() function in class:android::BpAudioTrack
66 remote()->transact(STOP, data, &reply);
136 case STOP: {
138 stop();
  /external/dhcpcd/dhcpcd-hooks/
20-dns.conf 31 EXPIRE|FAIL|IPV4LL|RELEASE|STOP) unset_dns_props;;
50-yp.conf 48 EXPIRE|FAIL|IPV4LL|RELEASE|STOP) restore_yp_conf;;
50-ntp.conf 88 PREINIT|EXPIRE|FAIL|IPV4LL|RELEASE|STOP) remove_ntp_conf del;;
20-resolv.conf 106 PREINIT|EXPIRE|FAIL|IPV4LL|RELEASE|STOP) remove_resolv_conf;;
  /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/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);
  /bionic/libc/include/sys/
_sigdefs.h 56 __BIONIC_SIGDEF(STOP,19,"Stopped (signal)")
  /development/ndk/platforms/android-9/include/sys/
_sigdefs.h 56 __BIONIC_SIGDEF(STOP,19,"Stopped (signal)")
  /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);
  /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);
  /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...]
  /external/openssl/crypto/rc4/asm/
rc4-ia64.pl 206 sub STOP {
254 &STOP(\$c);
268 &STOP(\$c);
282 &STOP(\$c);
  /external/openssl/apps/
speed.c 272 #define STOP 1
    [all...]
s_time.c 323 #define STOP 1
450 totalTime += tm_Time_F(STOP); /* Add the time for this iteration */
540 totalTime += tm_Time_F(STOP); /* Add the time for this iteration*/
  /packages/apps/Mms/src/com/android/mms/model/
AudioModel.java 125 public void stop() { method in class:AudioModel
126 appendAction(MediaAction.STOP);
143 action = MediaAction.STOP;
  /libcore/dalvik/src/main/java/dalvik/system/
SamplingProfiler.java 59 * profiler.stop();
63 * profiler.stop();
258 public void stop() { method in class:SamplingProfiler
273 stop(); method
338 // thread start/stop shouldn't happen too often and
372 ThreadEvent event = ThreadEvent.stop(threadId);
378 private enum ThreadEventType { START, STOP };
397 private static ThreadEvent stop(int threadId) { method in class:SamplingProfiler.ThreadEvent
398 return new ThreadEvent(ThreadEventType.STOP, threadId);
410 this.type = ThreadEventType.STOP;
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 308 * permitted to start and not permitted to stop. The value may be
319 * STOP: Don't accept new tasks, don't process queued tasks,
332 * (RUNNING or SHUTDOWN) -> STOP
336 * STOP -> TIDYING
358 private static final int STOP = 1 << COUNT_BITS;
621 * @param targetState the desired state, either SHUTDOWN or STOP
635 * and queue empty) or (STOP and pool empty). If otherwise
778 if (runStateLessThan(ctl.get(), STOP) &&
780 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)

Completed in 228 milliseconds

1 2 3