HomeSort by relevance Sort by last modified time
    Searched refs:Wait (Results 1 - 25 of 578) 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);
  /device/google/bonito/
init.firstboot.sh 6 # wait for system to settle down after sys.boot_complete
9 # Wait for USB to be removed.
12 echo Wait for \"$type\" == \"Nothing attached\"
  /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/libchrome/mojo/public/cpp/system/
wait.h 21 // If |signals_state| is non-null, |handle| is valid, the wait is not cancelled
34 // |MOJO_RESULT_CANCELLED| if the wait was cancelled because |handle| was
37 Wait(Handle handle,
42 // A pseudonym for the above Wait() which always waits on
44 inline MojoResult Wait(Handle handle,
47 return Wait(handle, signals, MOJO_TRIGGER_CONDITION_SIGNALS_SATISFIED,
57 // This means that |WaitMany()| behaves as if |Wait()| were called on each
58 // handle/signals pair simultaneously, completing when the first |Wait()| would
61 // If |signals_states| is non-null, all other arguments are valid, and the wait
76 // |MOJO_RESULT_CANCELLED| if the wait was cancelled because a handle i
    [all...]
  /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/grpc-grpc/src/csharp/Grpc.Examples.MathClient/
MathClient.cs 31 MathExamples.DivAsyncExample(client).Wait();
33 MathExamples.FibExample(client).Wait();
35 MathExamples.SumExample(client).Wait();
37 MathExamples.DivManyExample(client).Wait();
39 MathExamples.DependendRequestsExample(client).Wait();
41 channel.ShutdownAsync().Wait();
  /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);
  /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());
  /external/libchrome/base/threading/
thread_local_unittest.cc 91 done.Wait();
97 done.Wait();
106 done.Wait();
111 done.Wait();
118 done.Wait();
126 done.Wait();
131 done.Wait();
138 done.Wait();
  /external/perf_data_converter/src/quipper/compat/cros/detail/
thread.h 36 void Wait() override { event_.Wait(); }
  /external/v8/src/heap/
barrier.h 26 // } while(!shared_barrier->Wait());
46 bool Wait() {
57 condition_.Wait(&mutex_);
  /external/dng_sdk/source/
dng_abort_sniffer.cpp 45 void Wait (dng_priority priority);
127 void dng_priority_manager::Wait (dng_priority priority)
138 fCondition.Wait (fMutex);
210 gPriorityManager.Wait (sniffer->Priority ());

Completed in 886 milliseconds

1 2 3 4 5 6 7 8 91011>>