Home
last modified time | relevance | path

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

12345678910>>...18

/external/autotest/client/site_tests/platform_CryptohomeTPMReOwn/
Dplatform_CryptohomeTPMReOwn.py37 ready = False
42 ready = True
45 if (ready == False):
67 ready = False
72 ready = True
75 if (ready == False):
95 ready = False
100 ready = True
103 if (ready == False):
/external/robolectric/v1/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/valgrind/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
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
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/valgrind/gdbserver_tests/solaris/
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
/external/libcxx/test/std/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()
/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.java49 boolean ready = true; field in ReentrantEventsTest.ReentrantEventsHater
55 ready = false; in listenForStrings()
59 ready = true; in listenForStrings()
65 assertTrue("I received an event when I wasn't ready!", ready); in listenForDoubles()
/external/valgrind/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/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/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/guice/core/test/com/google/inject/
DBindingOrderTest.java59 final CountDownLatch ready = new CountDownLatch(1); in testBindingWithExtraThreads() local
67 ready.countDown(); in testBindingWithExtraThreads()
76 ready.await(); in testBindingWithExtraThreads()
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/js/
Dplayer-finish-event.js13 var ready = false;
17 assert(ready, 'must not be called synchronously');
30 ready = true;
Dgroup-player-finish-event.js21 var ready = false;
25 assert(ready, 'must not be called synchronously');
38 ready = true;
/external/guice/core/src/com/google/inject/internal/
DInitializer.java47 private final CountDownLatch ready = new CountDownLatch(1); field in Initializer
118 ready.countDown(); in injectAll()
148 if (ready.getCount() == 0) { in get()
155 ready.await(); in get()
/external/llvm/docs/tutorial/
DLangImpl4.rst28 ready> def test(x) 1+2+x;
41 ready> def test(x) 1+2+x;
73 ready> def test(x) (1+2+x)*(x+(1+2));
74 ready> Read function definition:
189 ready> def test(x) (1+2+x)*(x+(1+2));
190 ready> Read function definition:
314 ready> 4+5;
330 ready> def testfunc(x y) x + y*2;
339 ready> testfunc(4, 10);
349 ready> testfunc(5, 10);
[all …]
/external/webrtc/webrtc/base/
Dthread.cc342 bool ready = false; in Send() local
348 smsg.ready = &ready; in Send()
358 while (!ready) { in Send()
404 *smsg.ready = true; in ReceiveSendsFromThread()
449 *smsg.ready = true; in Clear()
/external/webrtc/talk/app/webrtc/test/
Dfakedatachannelprovider.h118 void set_ready_to_send(bool ready) { in set_ready_to_send() argument
120 ready_to_send_ = ready; in set_ready_to_send()
121 if (ready) { in set_ready_to_send()
/external/libcxx/test/std/thread/futures/futures.unique_future/
Dwait_for.pass.cpp57 assert(f.wait_for(ms(300)) == std::future_status::ready); in main()
73 assert(f.wait_for(ms(300)) == std::future_status::ready); in main()
89 assert(f.wait_for(ms(300)) == std::future_status::ready); in main()
Dwait_until.pass.cpp79 assert(f.wait_until(Clock::now() + ms(10)) == std::future_status::ready); in main()
100 assert(f.wait_until(Clock::now() + ms(10)) == std::future_status::ready); in main()
121 assert(f.wait_until(Clock::now() + ms(10)) == std::future_status::ready); in main()
/external/libcxx/test/std/thread/futures/futures.shared_future/
Dwait_for.pass.cpp57 assert(f.wait_for(ms(300)) == std::future_status::ready); in main()
73 assert(f.wait_for(ms(300)) == std::future_status::ready); in main()
89 assert(f.wait_for(ms(300)) == std::future_status::ready); in main()
/external/selinux/policycoreutils/gui/
DmodulesPage.py120 self.ready()
140 self.ready()
152 self.ready()
185 self.ready()
/external/opencv3/modules/videoio/src/
Dcap_winrt_video.cpp281 std::atomic<bool> ready(false); in listDevicesTask() local
286 .then([this, &ready](task<DeviceInformationCollection^> findTask) in listDevicesTask()
300 ready = true; in listDevicesTask()
305 while (!ready) in listDevicesTask()
/external/guava/guava/src/com/google/common/io/
DMultiReader.java78 @Override public boolean ready() throws IOException { in ready() method in MultiReader
79 return (current != null) && current.ready(); in ready()

12345678910>>...18