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

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/base/
event_unittest.cc 18 ASSERT_TRUE(event.Wait(0));
23 ASSERT_FALSE(event.Wait(0));
26 ASSERT_TRUE(event.Wait(0));
27 ASSERT_TRUE(event.Wait(0));
30 ASSERT_FALSE(event.Wait(0));
35 ASSERT_FALSE(event.Wait(0));
38 ASSERT_TRUE(event.Wait(0));
39 ASSERT_FALSE(event.Wait(0));
socketserver.h 20 // Provides the ability to wait for activity on a set of sockets. The Thread
24 // notified of asynchronous I/O from this server's Wait method.
38 virtual bool Wait(int cms, bool process_io) = 0;
40 // Causes the current wait (if one is in progress) to wake up.
nullsocketserver.h 25 virtual bool Wait(int cms, bool process_io) {
26 event_.Wait(cms);
nullsocketserver_unittest.cc 36 EXPECT_TRUE_WAIT(ss_.Wait(SocketServer::kForever, process_io), kTimeout);
41 ss_.Wait(200, true);
42 // The actual wait time is dependent on the resolution of the timer used by
event.h 36 // Wait for the event to become signaled, for the specified number of
37 // |milliseconds|. To wait indefinetly, pass kForever.
38 bool Wait(int milliseconds);
maccocoasocketserver.h 34 bool Wait(int cms, bool process_io) override;
maccocoasocketserver_unittest.mm 32 // Test that MacCocoaSocketServer::Wait works as expected.
36 server.Wait(1000, true);
46 server.Wait(10000, true);
macsocketserver.h 38 bool Wait(int cms, bool process_io) override = 0;
71 bool Wait(int cms, bool process_io) override;
89 // event loop until the next call to Wait. Other events are dispatched
97 virtual bool Wait(int cms, bool process_io);
112 // next call to Wait. Other events are automatically dispatched to
120 virtual bool Wait(int cms, bool process_io);
  /art/test/132-daemon-locks-shutdown/src/
Main.java 28 Thread t = new Thread(new Wait(sync));
34 private static class Wait implements Runnable {
37 public Wait(Object obj) {
45 obj.wait(1);
  /build/kati/
thread_pool.h 27 virtual void Wait() = 0;
  /external/chromium-trace/catapult/systrace/atrace_helper/jni/
time_utils.h 21 // Wait for next tick. Returns false if interrupted by Stop() or not started.
22 bool Wait();
  /external/perf_data_converter/src/quipper/compat/
thread.h 40 // Wait for Notify() to be called.
41 virtual void Wait() = 0;
42 // Wait for up to |timeout_ms| for a notification. Returns true if the
  /external/valgrind/drd/tests/
sem_wait.stderr.exp 3 Wait would have blocked
  /external/webrtc/webrtc/system_wrappers/source/
event.cc 39 EventTypeWrapper Wait(unsigned long max_time) override {
42 return event_.Wait(to_wait) ? kEventSignaled : kEventTimeout;
event_timer_posix.h 33 EventTypeWrapper Wait(unsigned long max_time) override;
42 EventTypeWrapper Wait(timespec* end_at);
event_timer_win.h 27 virtual EventTypeWrapper Wait(unsigned long max_time);
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
waitgroup_test.go 27 wg.Wait()
43 wg.Wait()
55 wg.Wait()
66 wg.Wait()
74 wg.Wait()
105 wg.Wait()
126 wg.Wait()
135 wg.Wait()
139 wg.Wait()
142 wg.Wait()
    [all...]
cgo_test_main.go 15 void Wait(void)
28 C.Wait()
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
waitgroup_test.go 27 wg.Wait()
43 wg.Wait()
55 wg.Wait()
66 wg.Wait()
74 wg.Wait()
105 wg.Wait()
126 wg.Wait()
135 wg.Wait()
139 wg.Wait()
142 wg.Wait()
    [all...]
cgo_test_main.go 15 void Wait(void)
28 C.Wait()
  /external/tensorflow/tensorflow/core/lib/core/
blocking_counter_test.cc 26 bc.Wait();
33 bc.Wait();
46 bc.Wait();
68 bc.Wait();
  /external/webrtc/webrtc/system_wrappers/include/
event_wrapper.h 32 // Releases threads who are calling Wait() and has started waiting. Please
33 // note that a thread calling Wait() will not start waiting immediately.
40 // Puts the calling thread into a wait state. The thread may be released
48 // |max_time| is the maximum time to wait in milliseconds or
49 // WEBRTC_EVENT_INFINITE to wait infinitely.
50 virtual EventTypeWrapper Wait(unsigned long max_time) = 0;
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
rtp_rtcp_extensions.cc 71 bool Wait() {
72 // Wait until we've received to specified number of packets.
108 EXPECT_FALSE(verifying_transport_.Wait());
116 EXPECT_TRUE(verifying_transport_.Wait());
123 EXPECT_FALSE(verifying_transport_.Wait());
131 EXPECT_TRUE(verifying_transport_.Wait());
142 EXPECT_TRUE(verifying_transport_.Wait());
154 EXPECT_TRUE(verifying_transport_.Wait());
  /prebuilts/go/darwin-x86/src/sync/
waitgroup_test.go 23 wg2.Wait()
27 wg1.Wait()
79 err != "sync: WaitGroup misuse: Add called concurrently with Wait" &&
80 err != "sync: WaitGroup is reused before previous Wait has returned" {
100 wg.Wait()
135 err != "sync: WaitGroup misuse: Add called concurrently with Wait" &&
136 err != "sync: WaitGroup is reused before previous Wait has returned" {
157 wg.Wait()
158 // Start reusing the wg before waiting for the Wait below to return.
163 wg.Wait()
    [all...]
  /prebuilts/go/linux-x86/src/sync/
waitgroup_test.go 23 wg2.Wait()
27 wg1.Wait()
79 err != "sync: WaitGroup misuse: Add called concurrently with Wait" &&
80 err != "sync: WaitGroup is reused before previous Wait has returned" {
100 wg.Wait()
135 err != "sync: WaitGroup misuse: Add called concurrently with Wait" &&
136 err != "sync: WaitGroup is reused before previous Wait has returned" {
157 wg.Wait()
158 // Start reusing the wg before waiting for the Wait below to return.
163 wg.Wait()
    [all...]

Completed in 933 milliseconds

1 2 3 4 5 6 7 8 91011>>