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

1 2 3 4 5 6 7

  /external/chromium/base/
task_queue.cc 39 std::deque<Task*> ready;
40 queue_.swap(ready);
42 // Run the tasks that are ready.
44 for (task = ready.begin(); task != ready.end(); ++task) {
  /external/valgrind/main/gdbserver_tests/
mcinfcallWSRU.stderr.exp 2 Brussels ready to sleep and/or burn
3 London ready to sleep and/or burn
4 Petaouchnok ready to sleep and/or burn
5 main ready to sleep and/or burn
nlcontrolc.stderr.exp 7 Brussels ready to sleep and/or burn
8 London ready to sleep and/or burn
9 Petaouchnok ready to sleep and/or burn
10 main ready to sleep and/or burn
mcinfcallRU.stderr.exp 2 main ready to sleep and/or burn
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicRenderer.java 78 public static native void ready(); method in class:MosaicRenderer
  /system/vold/
Xwarp.h 31 static int status(bool *ready, unsigned *mirrorPos, unsigned *maxSize);
Xwarp.cpp 33 const char *Xwarp::XWARP_READY = "/sys/fs/yaffs/mtd3/xwarp-ready";
44 int Xwarp::status(bool *ready, unsigned *mirrorPos, unsigned *maxSize) {
47 *ready = false;
54 fscanf(fp, "%d", (int *) ready);
  /external/bluetooth/glib/glib/
gpoll.c 101 * directly if you need to block until a file descriptor is ready, but
142 DWORD ready; local
154 ready = MsgWaitForMultipleObjectsEx (nhandles, handles, timeout,
157 if (ready == WAIT_FAILED)
168 ready = WAIT_FAILED;
172 ready = WAIT_TIMEOUT;
183 ready = WaitForMultipleObjectsEx (nhandles, handles, FALSE, timeout, TRUE);
184 if (ready == WAIT_FAILED)
194 ready,
195 (ready == WAIT_FAILED ? " (WAIT_FAILED)"
382 int ready; local
    [all...]
  /bionic/libstdc++/src/
one_time_construction.cpp 49 const static int ready = 0x1; variable
65 const static int ready = letoh32(0x1); variable
75 // ready: untouched, return 0
85 if (gv->state != ready) // __cxa_guard_abort was called, let every thread try since there is no return code for this condition
94 // pending -> ready
95 // waiting -> ready, and wake
98 if (__bionic_cmpxchg(pending, ready, &gv->state) == 0) {
102 gv->state = ready;
  /external/guava/guava-tests/test/com/google/common/eventbus/
ReentrantEventsTest.java 47 boolean ready = true; field in class:ReentrantEventsTest.ReentrantEventsHater
53 ready = false;
57 ready = true;
63 assertTrue("I received an event when I wasn't ready!", ready);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
CharArrayReaderTest.java 34 assertTrue("Failed to create reader", cr.ready());
42 assertTrue("Failed to create reader", cr.ready());
108 * @tests java.io.CharArrayReader#ready()
112 assertTrue("ready returned false", cr.ready());
114 assertTrue("ready returned true", !cr.ready());
118 cr.ready();
126 cr.ready();
  /libcore/luni/src/main/java/java/io/
FilterReader.java 144 * Indicates whether this reader is ready to be read without blocking. If
155 public boolean ready() throws IOException { method in class:FilterReader
157 return in.ready();
  /packages/apps/Email/src/org/apache/commons/io/input/
ProxyReader.java 89 * Invokes the delegate's <code>ready()</code> method.
90 * @return true if the stream is ready to be read
93 public boolean ready() throws IOException { method in class:ProxyReader
94 return in.ready();
  /external/qemu/android/
looper-qemu.c 101 * users expect a single call with a mask of ready events.
131 unsigned ready; member in struct:QLoopIo
149 io->ready = 0;
164 if (io->ready != 0) {
166 io->ready = 0;
173 if (io->ready == 0) {
176 io->ready |= flag;
202 if (io->ready && (io->ready & wanted) == 0) {
245 if (io->ready)
356 unsigned ready; local
    [all...]
looper-generic.c 151 unsigned ready; member in struct:GLoopIo
169 * current ready flags, remove from list */
170 if (io->ready != 0 && (io->ready & wanted) == 0) {
173 io->ready &= wanted;
210 return io->ready;
217 if (io->ready != 0)
245 io->ready = 0;
394 unsigned ready; local
402 ready = 0
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ObjectTest.java 33 int ready = 0; field in class:ObjectTest
96 ready += 1;
114 ready = 0;
129 if (ready == threadCount) {
135 assertTrue("Not all launched threads are waiting. (ready = "
136 + ready + ")", ready == threadCount);
166 ready += 1;
185 ready = 0;
200 if (ready == threadCount)
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldCharArrayReaderTest.java 37 assertTrue("Failed to create reader", cr.ready());
39 fail("Exception determining ready state : " + e.getMessage());
73 assertTrue("Test 5: Failed to create reader", cr.ready());
192 // Test for method boolean java.io.CharArrayReader.ready()
196 assertTrue("ready returned false", cr.ready());
198 assertTrue("ready returned true", !cr.ready());
201 cr.ready();
210 cr.ready();
    [all...]
  /external/dropbear/libtomcrypt/src/prngs/
rng_make_prng.c 56 if ((err = prng_descriptor[wprng].ready(prng)) != CRYPT_OK) {
  /external/qemu/hw/
goldfish_tty.c 39 uint32_t ready; member in struct:tty_state
52 qemu_put_byte( f, s->ready );
66 s->ready = qemu_get_byte(f);
104 if(s->ready) {
107 s->ready = 0;
112 if(!s->ready) {
115 s->ready = 1;
158 if(s->data_count == 0 && s->ready)
193 if(s->data_count > 0 && s->ready)
  /external/dropbear/libtomcrypt/testprof/
cipher_hash_test.c 27 DO(prng_descriptor[x].ready(&nprng));
32 DO(prng_descriptor[x].ready(&nprng));
  /external/guava/guava/src/com/google/common/io/
MultiReader.java 77 @Override public boolean ready() throws IOException { method in class:MultiReader
78 return (current != null) && current.ready();
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toy.ml 14 print_string "ready> "; flush stdout;
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
GaneshRenderer.cpp 65 bool ready = tileQueue->readyForUpdate(); local
66 if (!ready) {
67 ALOGV("!ready");
  /libcore/support/src/test/java/tests/support/
Support_ASimpleReader.java 48 public boolean ready() throws IOException { method in class:Support_ASimpleReader
  /dalvik/vm/mterp/x86/
OP_INVOKE_VIRTUAL_QUICK.S 21 EXPORT_PC # might throw later - get ready

Completed in 777 milliseconds

1 2 3 4 5 6 7