HomeSort by relevance Sort by last modified time
    Searched full:busy (Results 26 - 50 of 1604) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/syslinux/dos/
errno.h 19 #define EBUSY 16 /* Device or resource busy */
29 #define ETXTBSY 26 /* Text file busy */
  /external/webrtc/webrtc/base/
platform_thread_unittest.cc 21 SleepMs(0); // Hand over timeslice, prevents busy looping.
35 SleepMs(0); // Hand over timeslice, prevents busy looping.
  /hardware/qcom/msm8994/original-kernel-headers/linux/mmc/
core.h 7 #define MMC_RSP_BUSY (1 << 3) /* card may send busy */
19 #define MMC_RSP_SPI_BUSY (1 << 10) /* card may send busy */
  /hardware/qcom/msm8996/original-kernel-headers/linux/mmc/
core.h 7 #define MMC_RSP_BUSY (1 << 3) /* card may send busy */
19 #define MMC_RSP_SPI_BUSY (1 << 10) /* card may send busy */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
errno-base.h 19 #define EBUSY 16 /* Device or resource busy */
29 #define ETXTBSY 26 /* Text file busy */
  /external/python/cpython2/Demo/tkinter/guido/
ManPage.py 36 # Test whether we are busy parsing a file
37 def busy(self): member in class:EditableManPage
40 # Ensure we're not busy
42 if self.busy():
75 # Initialize parsing from a particular file -- must not be busy
77 if self.busy():
78 raise RuntimeError, 'startparser: still busy'
90 # End parsing -- must be busy, need not be at EOF
92 if not self.busy():
93 raise RuntimeError, 'endparser: not busy'
    [all...]
  /frameworks/opt/net/voip/src/java/android/net/rtp/
RtpStream.java 108 * Returns {@code true} if the stream is busy. In this case most of the
129 * @throws IllegalStateException if the stream is busy.
134 throw new IllegalStateException("Busy");
150 * @throws IllegalStateException if the stream is busy.
155 throw new IllegalStateException("Busy");
176 * @throws IllegalStateException if the stream is busy.
182 throw new IllegalStateException("Busy");
  /external/ltp/testcases/realtime/func/hrtimer-prio/
hrtimer-prio.c 51 #define DEF_BUSY_TIME 10 // Duration of busy work in milliseconds
71 printf(" -t# #:busy work time in ms, defaults to %d ms\n",
75 printf(" -n# #:number of busy threads, defaults to NR_CPUS*2\n");
77 (" -f# #:rt fifo priority of busy threads (1,98), defaults to %d\n",
134 printf("All Busy Threads started, commencing test\n"); // FIXME: use debug infrastructure
175 printf("Running with %d busy threads\n", busy_threads);
176 printf("Busy thread work time: %d\n", busy_time);
177 printf("Busy thread priority: %d\n", med_prio);
202 printf("Failed to create a busy thread\n");
  /external/libmicrohttpd/src/examples/
refuse_post_example.c 34 #define BUSYPAGE "<html><head><title>Webserver busy</title></head><body>We are too busy to process POSTs right now.</body></html>"
56 /* always to busy for POST requests */
  /external/ltp/testcases/network/busy_poll/
busy_poll01.sh 58 tst_resm TINFO "set low latency busy poll to $x"
66 tst_resm TFAIL "busy poll result is '$poll_cmp' %"
68 tst_resm TPASS "busy poll increased performance by '$poll_cmp' %"
busy_poll02.sh 49 tst_resm TINFO "set low latency busy poll to $x per socket"
57 tst_resm TFAIL "busy poll result is '$poll_cmp' %"
59 tst_resm TPASS "busy poll increased performance by '$poll_cmp' %"
busy_poll03.sh 49 tst_resm TINFO "set low latency busy poll to $x per socket"
57 tst_resm TFAIL "busy poll result is '$poll_cmp' %"
59 tst_resm TPASS "busy poll increased performance by '$poll_cmp' %"
  /device/linaro/bootloader/arm-trusted-firmware/services/spd/trusty/
sm_err.h 15 #define SM_ERR_BUSY -5 /* Temporarily busy. Call back with original args */
  /external/python/cpython2/Lib/test/subprocessdata/
sigchild_ignore.py 12 time.sleep(0.01) # Avoid being a CPU busy loop.
  /external/python/cpython3/Lib/test/subprocessdata/
sigchild_ignore.py 12 time.sleep(0.01) # Avoid being a CPU busy loop.
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowWifiP2pManagerTest.java 55 shadowManager.setNextActionFailure(WifiP2pManager.BUSY);
60 assertThat(testListener.reason).isEqualTo(WifiP2pManager.BUSY);
96 shadowManager.setNextActionFailure(WifiP2pManager.BUSY);
100 assertThat(testListener.reason).isEqualTo(WifiP2pManager.BUSY);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 12 time.sleep(0.01) # Avoid being a CPU busy loop.
  /prebuilts/gdb/linux-x86/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 12 time.sleep(0.01) # Avoid being a CPU busy loop.
  /prebuilts/go/darwin-x86/misc/cgo/testcarchive/
main6.c 20 // Busy wait so we have something to profile.
  /prebuilts/go/linux-x86/misc/cgo/testcarchive/
main6.c 20 // Busy wait so we have something to profile.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 12 time.sleep(0.01) # Avoid being a CPU busy loop.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 12 time.sleep(0.01) # Avoid being a CPU busy loop.
  /external/guava/guava/src/com/google/common/cache/
Striped64.java 49 * A single spinlock ("busy") is used for initializing and
141 transient volatile int busy; field in class:Striped64
157 * CASes the busy field from 0 to 1 to acquire lock.
199 if (busy == 0) { // Try to attach new Cell
201 if (busy == 0 && casBusy()) {
212 busy = 0;
229 else if (busy == 0 && casBusy()) {
237 busy = 0;
247 else if (busy == 0 && cells == as && casBusy()) {
257 busy = 0
    [all...]
  /external/ltp/testcases/realtime/func/prio-preempt/
prio-preempt.c 26 * - Creates a minimum of (N-1) busy threads at priority starting at
95 printf(" -n# #: number of busy threads\n");
123 /* do some busy work */
149 printf("Busy Thread %d(%d): Running...\n", tid, mypri);
154 /* Busy loop */
157 printf("Busy Thread %d(%d): Exiting\n", tid, mypri);
247 /* start the (N-1) busy threads */
259 printf("Busy threads created!\n");
300 /* Max no. of busy threads should always be less than/equal the no. of cpus
305 printf("Maximum busy thread count(%d),
    [all...]
  /external/libmojo/mojo/edk/system/
handle_table.h 37 // Marks handles as busy and populates |dispatchers|. Returns MOJO_RESULT_BUSY
60 bool busy = false; member in struct:mojo::edk::HandleTable::Entry

Completed in 1297 milliseconds

12 3 4 5 6 7 8 91011>>