Home
last modified time | relevance | path

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

12345678910>>...15

/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/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
DClassCacheTest.java40 Assert.assertEquals(false, attempt.ready); in fixForCorberturaAndSonarCodeCoverage()
79 Assert.assertEquals(false, attempt.ready); in fixForCorberturaAndSonarCodeCoverageTheOtherWayAround()
89 public boolean ready = false; field in ClassCacheTest.TestThreadIsWriting
102 ready = true; in run()
107 public boolean ready = false; field in ClassCacheTest.TestThreadSaveAllClassesToCache
120 ready = true; in run()
/external/chromium_org/content/common/
Dgamepad_seqlock_unittest.cc29 base::subtle::Atomic32* ready) { in Init() argument
32 ready_ = ready; in Init()
65 base::AtomicRefCount ready = 0; in TEST() local
74 threads[i].Init(&seqlock, &data, &ready); in TEST()
88 base::AtomicRefCountIncN(&ready, kNumReaderThreads); in TEST()
90 if (AtomicRefCountIsZero(&ready)) in TEST()
/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
/external/qemu/hw/
Dgoldfish_tty.c36 uint32_t ready; member
49 qemu_put_byte( f, s->ready ); in goldfish_tty_save()
63 s->ready = qemu_get_byte(f); in goldfish_tty_load()
101 if(s->ready) { in goldfish_tty_write()
104 s->ready = 0; in goldfish_tty_write()
109 if(!s->ready) { in goldfish_tty_write()
112 s->ready = 1; in goldfish_tty_write()
147 if(s->data_count == 0 && s->ready) in goldfish_tty_write()
182 if(s->data_count > 0 && s->ready) in tty_receive()
/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/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()
/external/iputils/
Dclockdiff.c131 fd_set ready; in measure() local
147 FD_ZERO(&ready); in measure()
151 FD_SET(sock_raw, &ready); in measure()
152 if (select(FD_SETSIZE, &ready, (fd_set *)0, (fd_set *)0, &tout)) { in measure()
178 FD_ZERO(&ready); in measure()
207 FD_ZERO(&ready); in measure()
208 FD_SET(sock_raw, &ready); in measure()
215 if ((count = select(FD_SETSIZE, &ready, (fd_set *)0, in measure()
308 fd_set ready; in measure_opt() local
324 FD_ZERO(&ready); in measure_opt()
[all …]
/external/chromium_org/content/browser/device_orientation/
Ddata_fetcher_impl_android.cc217 void DataFetcherImplAndroid::SetMotionBufferReadyStatus(bool ready) { in SetMotionBufferReadyStatus() argument
219 device_motion_buffer_->data.allAvailableSensorsAreActive = ready; in SetMotionBufferReadyStatus()
221 is_motion_buffer_ready_ = ready; in SetMotionBufferReadyStatus()
232 void DataFetcherImplAndroid::SetOrientationBufferReadyStatus(bool ready) { in SetOrientationBufferReadyStatus() argument
234 device_orientation_buffer_->data.absolute = ready; in SetOrientationBufferReadyStatus()
235 device_orientation_buffer_->data.hasAbsolute = ready; in SetOrientationBufferReadyStatus()
236 device_orientation_buffer_->data.allAvailableSensorsAreActive = ready; in SetOrientationBufferReadyStatus()
238 is_orientation_buffer_ready_ = ready; in SetOrientationBufferReadyStatus()
/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/valgrind/main/helgrind/tests/
Dpth_destroy_cond.c11 int ready = 0; variable
16 ready = 1; in ThreadFunction()
30 while (!ready) { // to insure ourselves against spurious wakeups in main()
/external/smack/src/com/kenai/jbosh/
DHTTPExchange.java52 private final Condition ready = lock.newCondition(); field in HTTPExchange
99 ready.signalAll(); in setHTTPResponse()
115 ready.await(); in getHTTPResponse()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
Dnv50_query.c45 boolean ready; member
68 if (q->ready) in nv50_query_allocate()
191 q->ready = FALSE; in nv50_query_begin()
236 q->ready = q->flushed = FALSE; in nv50_query_end()
242 return q->ready || (!q->is64bit && (q->data[0] == q->sequence)); in nv50_query_ready()
256 if (!q->ready) /* update ? */ in nv50_query_result()
257 q->ready = nv50_query_ready(q); in nv50_query_result()
258 if (!q->ready) { in nv50_query_result()
270 q->ready = TRUE; in nv50_query_result()
/external/mesa3d/src/gallium/drivers/nv50/
Dnv50_query.c45 boolean ready; member
68 if (q->ready) in nv50_query_allocate()
191 q->ready = FALSE; in nv50_query_begin()
236 q->ready = q->flushed = FALSE; in nv50_query_end()
242 return q->ready || (!q->is64bit && (q->data[0] == q->sequence)); in nv50_query_ready()
256 if (!q->ready) /* update ? */ in nv50_query_result()
257 q->ready = nv50_query_ready(q); in nv50_query_result()
258 if (!q->ready) { in nv50_query_result()
270 q->ready = TRUE; in nv50_query_result()
/external/mesa3d/src/gallium/drivers/nvc0/codegen/
Dnv50_ir_emit_nvc0.cpp1974 void recordRd(const Value *, const int ready);
1975 void recordWr(const Value *, const int ready);
2119 int delay = 0, ready = cycle; in calcDelay() local
2129 ready = score->res.sfu; in calcDelay()
2133 ready = score->res.imul; in calcDelay()
2136 ready = score->res.tex; in calcDelay()
2139 ready = score->res.ld[insn->src(0).getFile()]; in calcDelay()
2142 ready = score->res.st[insn->src(0).getFile()]; in calcDelay()
2148 ready = MAX2(ready, score->res.tex); in calcDelay()
2150 delay = MAX2(delay, ready - cycle); in calcDelay()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
Dnv50_ir_emit_nvc0.cpp1974 void recordRd(const Value *, const int ready);
1975 void recordWr(const Value *, const int ready);
2119 int delay = 0, ready = cycle; in calcDelay() local
2129 ready = score->res.sfu; in calcDelay()
2133 ready = score->res.imul; in calcDelay()
2136 ready = score->res.tex; in calcDelay()
2139 ready = score->res.ld[insn->src(0).getFile()]; in calcDelay()
2142 ready = score->res.st[insn->src(0).getFile()]; in calcDelay()
2148 ready = MAX2(ready, score->res.tex); in calcDelay()
2150 delay = MAX2(delay, ready - cycle); in calcDelay()
[all …]
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
Dbase_unittests.js110 var ready = false;
112 ok(ready);
114 ready = true;
116 ready = false;
119 ok(ready);
123 ready = true;
125 ready = false;
/external/chromium-trace/
Dsystrace.py157 ready = select.select([adb.stdout, adb.stderr], [], [adb.stdout, adb.stderr])
158 if adb.stderr in ready[0]:
162 if adb.stdout in ready[0]:
184 ready = select.select([adb.stdout, adb.stderr], [], [adb.stdout, adb.stderr])
186 if adb.stderr in ready[0]:
192 if adb.stdout in ready[0]:
/external/chromium_org/chrome/browser/extensions/api/declarative/
Ddeclarative_apitest.cc173 ExtensionTestMessageListener ready("ready", /*will_reply=*/false); in IN_PROC_BROWSER_TEST_F() local
178 ASSERT_TRUE(ready.WaitUntilSatisfied()); in IN_PROC_BROWSER_TEST_F()
240 ExtensionTestMessageListener ready("ready", /*will_reply=*/false); in IN_PROC_BROWSER_TEST_F() local
245 ASSERT_TRUE(ready.WaitUntilSatisfied()); in IN_PROC_BROWSER_TEST_F()
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
Dfakedatachannelprovider.h105 void set_ready_to_send(bool ready) { in set_ready_to_send() argument
107 ready_to_send_ = ready; in set_ready_to_send()
108 if (ready) { in set_ready_to_send()
/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/chromium_org/third_party/libjingle/source/talk/base/
Dthread.cc398 bool ready = false; in Send() local
405 smsg.ready = &ready; in Send()
415 while (!ready) { in Send()
453 *smsg.ready = true; in ReceiveSends()
477 *smsg.ready = true; in Clear()

12345678910>>...15