Home
last modified time | relevance | path

Searched refs:ready (Results 1 – 25 of 229) sorted by relevance

12345678910

/external/bluetooth/glib/glib/
Dgpoll.c142 DWORD ready; in poll_rest() local
154 ready = MsgWaitForMultipleObjectsEx (nhandles, handles, timeout, in poll_rest()
157 if (ready == WAIT_FAILED) in poll_rest()
168 ready = WAIT_FAILED; in poll_rest()
172 ready = WAIT_TIMEOUT; in poll_rest()
183 ready = WaitForMultipleObjectsEx (nhandles, handles, FALSE, timeout, TRUE); in poll_rest()
184 if (ready == WAIT_FAILED) in poll_rest()
194 ready, in poll_rest()
195 (ready == WAIT_FAILED ? " (WAIT_FAILED)" : in poll_rest()
196 (ready == WAIT_TIMEOUT ? " (WAIT_TIMEOUT)" : in poll_rest()
[all …]
/external/qemu/android/
Dlooper-qemu.c131 unsigned ready; member
149 io->ready = 0; in qloopio_new()
164 if (io->ready != 0) { in qloopio_removePending()
166 io->ready = 0; in qloopio_removePending()
173 if (io->ready == 0) { in qloopio_setReady()
176 io->ready |= flag; in qloopio_setReady()
202 if (io->ready && (io->ready & wanted) == 0) { in qloopio_modify()
245 if (io->ready) in qloopio_free()
261 return io->ready; in qloopio_poll()
356 unsigned ready; in qlooper_handle_io_bh() local
[all …]
Dlooper-generic.c151 unsigned ready; member
170 if (io->ready != 0 && (io->ready & wanted) == 0) { in gloopio_modify()
173 io->ready &= wanted; in gloopio_modify()
210 return io->ready; in gloopio_poll()
217 if (io->ready != 0) in gloopio_free()
245 io->ready = 0; in glooper_io_init()
394 unsigned ready; in glooper_run() local
402 ready = 0; in glooper_run()
405 ready |= LOOP_IO_READ; in glooper_run()
408 ready |= LOOP_IO_WRITE; in glooper_run()
[all …]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DObjectTest.java33 int ready = 0; field in ObjectTest
96 ready += 1; in test_notify()
114 ready = 0; in test_notify()
129 if (ready == threadCount) { in test_notify()
136 + ready + ")", ready == threadCount); in test_notify()
166 ready += 1; in test_notifyAll()
185 ready = 0; in test_notifyAll()
200 if (ready == threadCount) { in test_notifyAll()
207 + ready + ")", ready == threadCount); in test_notifyAll()
/external/qemu/hw/
Dgoldfish_tty.c39 uint32_t ready; member
52 qemu_put_byte( f, s->ready ); in goldfish_tty_save()
66 s->ready = qemu_get_byte(f); in goldfish_tty_load()
104 if(s->ready) { in goldfish_tty_write()
107 s->ready = 0; in goldfish_tty_write()
112 if(!s->ready) { in goldfish_tty_write()
115 s->ready = 1; in goldfish_tty_write()
158 if(s->data_count == 0 && s->ready) in goldfish_tty_write()
193 if(s->data_count > 0 && s->ready) in tty_receive()
/external/valgrind/main/gdbserver_tests/
Dnlcontrolc.stderr.exp7 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
DmcinfcallWSRU.stderr.exp2 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
Dsleepers.c43 static pthread_cond_t ready = PTHREAD_COND_INITIALIZER; variable
52 rc = pthread_cond_signal(&ready); in signal_ready()
104 rc = pthread_cond_wait(&ready, &ready_mutex); in wait_ready()
DmcinfcallRU.stdinB.gdb6 # We will interrupt in a few seconds (be sure the main task is ready).
7 # Once it is ready, we still have to wait to be sure it is running.
/external/chromium/base/
Dtask_queue.cc39 std::deque<Task*> ready; in Run() local
40 queue_.swap(ready); in Run()
44 for (task = ready.begin(); task != ready.end(); ++task) { in Run()
/external/llvm/lib/Target/MBlaze/
DMBlazeSchedule3.td20 // ready after the execute stage.
25 [ 2 // result ready after two cycles
34 // ready after the execute stage.
39 [ 4 // result ready after four cycles
46 // source operands are read during the decode stage and the result is ready
52 [ 35 // result ready after 35 cycles
60 // are read during the decode stage and the result is ready after the execute
66 [ 3 // result ready after three cycles
92 // and the destination register is ready after the execute stage.
97 [ 2 // result ready after two cycles
[all …]
DMBlazeSchedule5.td20 // ready after the execute stage.
27 [ 2 // result ready after two cycles
35 // and the result is ready after the execute stage.
42 [ 2 // result ready after two cycles
49 // source operands are read during the decode stage and the result is ready
57 [ 33 // result ready after 33 cycles
65 // ready after the memory access stage.
72 [ 3 // result ready after three cycles
102 // and the destination register is ready after the writeback stage.
109 [ 4 // result ready after four cycles
[all …]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
DCharArrayReaderTest.java34 assertTrue("Failed to create reader", cr.ready()); in test_Constructor$C()
42 assertTrue("Failed to create reader", cr.ready()); in test_Constructor$CII()
112 assertTrue("ready returned false", cr.ready()); in test_ready()
114 assertTrue("ready returned true", !cr.ready()); in test_ready()
118 cr.ready(); in test_ready()
126 cr.ready(); in test_ready()
DInputStreamReaderTest.java153 reader.ready(); in test_close()
184 assertFalse(reader.ready()); in test_close()
528 assertTrue("Ready test failed", is.ready()); in test_ready()
530 assertTrue("More chars, but not ready", is.ready()); in test_ready()
532 assertTrue(reader.ready()); in test_ready()
534 assertFalse(reader.ready()); in test_ready()
/external/guava/guava-tests/test/com/google/common/eventbus/
DReentrantEventsTest.java47 boolean ready = true; field in ReentrantEventsTest.ReentrantEventsHater
53 ready = false; in listenForStrings()
57 ready = true; in listenForStrings()
63 assertTrue("I received an event when I wasn't ready!", ready); in listenForDoubles()
/external/chromium/third_party/libjingle/source/talk/base/
Dthread.cc392 bool ready = false; in Send() local
399 smsg.ready = &ready; in Send()
409 while (!ready) { in Send()
449 *smsg.ready = true; in ReceiveSends()
474 *smsg.ready = true; in Clear()
/external/dropbear/libtomcrypt/testprof/
Dcipher_hash_test.c27 DO(prng_descriptor[x].ready(&nprng)); in cipher_hash_test()
32 DO(prng_descriptor[x].ready(&nprng)); in cipher_hash_test()
/external/guava/guava/src/com/google/common/io/
DMultiReader.java77 @Override public boolean ready() throws IOException { in ready() method in MultiReader
78 return (current != null) && current.ready(); in ready()
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
DChannelsTest.java402 assertFalse(testReader.ready()); in testNewReaderReadableByteChannelString_InputNull()
416 assertFalse(testReader.ready()); in testNewReaderReadableByteChannelString_InputNull()
439 assertFalse(testReader.ready()); in testNewReaderReadableByteChannelString_internalBufferZero()
452 assertFalse(testReader.ready()); in testNewReaderReadableByteChannelString_internalBufferZero()
477 assertFalse(testReader.ready()); in testNewReaderReadableByteChannelString()
478 assertFalse(testReader_s.ready()); in testNewReaderReadableByteChannelString()
493 assertTrue(testReader.ready()); in testNewReaderReadableByteChannelString()
494 assertFalse(testReader_s.ready()); in testNewReaderReadableByteChannelString()
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
DGaneshRenderer.cpp65 bool ready = tileQueue->readyForUpdate(); in setupCanvas() local
66 if (!ready) { in setupCanvas()
/external/chromium/chrome/browser/resources/options/
Dcertificate_manager.js231 CertificateManager.onCheckTpmTokenReady = function(ready) { argument
234 importAndBindButton.disabled = !ready;
238 if (!ready && CertificateManager.getInstance().visible)
/external/chromium/chrome/common/
Dservice_process_util_mac.mm207 bool ready = true;
209 ready = false;
216 ready = true;
225 ready = true;
227 ready = false;
229 ready = true;
233 if (!ready) {
236 return ready;
/external/quake/quake/src/WinQuake/
Dsys_sun.cpp271 int ready; in Sys_ConsoleInput() local
278 ready = select(1, &readfds, 0, 0, &timeout); in Sys_ConsoleInput()
280 if (ready>0) in Sys_ConsoleInput()
/external/llvm/include/llvm/
DIntrinsicsXCore.td91 // If any of the resources owned by the thread are ready this returns the
92 // vector of one of the ready resources. If no resources owned by the thread
93 // are ready then the operand passed to the intrinsic is returned.
/external/chromium-trace/
Dsystrace.py123 ready = select.select([adb.stdout, adb.stderr], [], [adb.stdout, adb.stderr])
124 if adb.stderr in ready[0]:
128 if adb.stdout in ready[0]:

12345678910