Home
last modified time | relevance | path

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

12345678910>>...19

/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/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/
Done_writer_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/qemu/hw/android/goldfish/
Dtty.c38 uint32_t ready; member
51 qemu_put_byte( f, s->ready ); in goldfish_tty_save()
70 s->ready = qemu_get_byte(f); in goldfish_tty_load()
108 if(s->ready) { in goldfish_tty_write()
111 s->ready = 0; in goldfish_tty_write()
116 if(!s->ready) { in goldfish_tty_write()
119 s->ready = 1; in goldfish_tty_write()
154 if(s->data_count == 0 && s->ready) in goldfish_tty_write()
193 if(s->data_count > 0 && s->ready) in tty_receive()
/external/libcxx/test/re/re.results/re.results.state/
Dready.pass.cpp24 assert(m.ready() == false); in test1()
26 assert(m.ready() == true); in test1()
34 assert(m.ready() == false); in test2()
36 assert(m.ready() == true); in test2()
DAndroid.mk19 test_name := re/re.results/re.results.state/ready
20 test_src := ready.pass.cpp
/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
Dnlvgdbsigqueue.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
/external/chromium_org/pdf/
Dpaint_manager.cc164 std::vector<ReadyRect> ready; in DoPaint() local
201 client_->OnPaint(update.paint_rects, &ready, &pending); in DoPaint()
203 if (ready.empty() && pending.empty()) { in DoPaint()
211 for (size_t i = 0; i < ready.size(); ++i) in DoPaint()
212 temp_ready.push_back(ready[i]); in DoPaint()
224 for (size_t i = 0; i < ready.size(); ++i) { in DoPaint()
230 if (ready[i].flush_now && in DoPaint()
232 ready_now.push_back(ready[i]); in DoPaint()
234 ready_later.push_back(ready[i]); in DoPaint()
/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/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_org/content/browser/device_sensors/
Dsensor_manager_android.cc268 void SensorManagerAndroid::SetMotionBufferReadyStatus(bool ready) { in SetMotionBufferReadyStatus() argument
270 device_motion_buffer_->data.allAvailableSensorsAreActive = ready; in SetMotionBufferReadyStatus()
272 is_motion_buffer_ready_ = ready; in SetMotionBufferReadyStatus()
283 void SensorManagerAndroid::SetOrientationBufferReadyStatus(bool ready) { in SetOrientationBufferReadyStatus() argument
285 device_orientation_buffer_->data.absolute = ready; in SetOrientationBufferReadyStatus()
286 device_orientation_buffer_->data.hasAbsolute = ready; in SetOrientationBufferReadyStatus()
287 device_orientation_buffer_->data.allAvailableSensorsAreActive = ready; in SetOrientationBufferReadyStatus()
289 is_orientation_buffer_ready_ = ready; in SetOrientationBufferReadyStatus()
/external/chromium_org/third_party/angle/tests/angle_tests/
DOcclusionQueriesTest.cpp84 GLuint ready = GL_FALSE; in TEST_F() local
85 while (ready == GL_FALSE) in TEST_F()
88 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EXT, &ready); in TEST_F()
176 GLuint ready = GL_FALSE; in TEST_F() local
177 …glGetQueryObjectuivEXT(query2, GL_QUERY_RESULT_AVAILABLE_EXT, &ready); // this query is now deleted in TEST_F()
/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/chromium_org/chrome/browser/resources/local_ntp/
Dlocal_ntp.css204 .mv-page-ready {
219 .classical .mv-page-ready {
233 .md .mv-page-ready {
246 .mv-page-ready .mv-tile-inner {
290 .classical .mv-page-ready .mv-mask {
294 .default-theme.classical .mv-page-ready .mv-mask {
298 .default-theme.classical .mv-page-ready:hover .mv-mask,
299 .default-theme.classical .mv-page-ready .mv-focused ~ .mv-mask {
303 .default-theme.md.old-hover .mv-page-ready:hover .mv-mask,
304 .default-theme.md.old-hover .mv-page-ready .mv-focused ~ .mv-mask {
[all …]
/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/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/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/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/extensions/browser/api/declarative/
Drules_cache_delegate.cc85 system.ready().Post( in Init()
89 system.ready().Post(FROM_HERE, in Init()
127 bool is_ready = ExtensionSystem::Get(browser_context_)->ready().is_signaled(); in ReadRulesForInstalledExtensions()
162 ExtensionSystem::Get(browser_context_)->ready().Post( in ReadFromStorage()
195 ExtensionSystem::Get(browser_context_)->ready().Post( in ReadFromStorageCallback()
/external/chromium_org/content/renderer/browser_plugin/
Dbrowser_plugin.cc87 if (!ready()) in ~BrowserPlugin()
128 if (ready()) { in Attach()
291 if (!ready()) in UpdateGuestFocusState()
482 if (!ready()) in updateVisibility()
500 if (guest_crashed_ || !ready()) in handleInputEvent()
530 if (guest_crashed_ || !ready()) in handleDragStatusUpdate()
592 if (!ready()) in setComposition()
612 if (!ready()) in confirmComposition()
625 if (!ready()) in extendSelectionAndDelete()
/external/chromium_org/net/spdy/
Dspdy_priority_tree.h70 bool ready; // Does the stream have data ready for writing? member
131 bool SetReady(NodeId node_id, bool ready);
166 root_node->ready = true; in SpdyPriorityTree()
180 ready(false), in Node()
391 bool SpdyPriorityTree<NodeId>::SetReady(NodeId node_id, bool ready) { in SetReady() argument
396 node->ready = ready; in SetReady()
410 (node->blocked || !node->ready)) { in PropagateNodeState()
460 if (current_node->blocked || !current_node->ready) { in GetPriorityList()

12345678910>>...19