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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/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.
36 virtual bool Wait(int cms, bool process_io) = 0;
38 // 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 37 EXPECT_TRUE_WAIT(ss_.Wait(rtc::kForever, process_io), kTimeout);
42 ss_.Wait(200, true);
43 // The actual wait time is dependent on the resolution of the timer used by
event.h 34 bool Wait(int cms);
maccocoasocketserver.h 34 virtual bool Wait(int cms, bool process_io);
maccocoasocketserver_unittest.mm 32 // Test that MacCocoaSocketServer::Wait works as expected.
36 server.Wait(1000, true);
46 server.Wait(10000, true);
macsocketserver.h 38 virtual bool Wait(int cms, bool process_io) = 0;
71 virtual bool Wait(int cms, bool process_io);
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);
  /external/chromium_org/chrome/browser/extensions/
lazy_background_page_test_util.h 12 // Helper class to wait for a lazy background page to load and close again.
25 void Wait() {
26 page_created_.Wait();
27 page_closed_.Wait();
31 page_created_.Wait();
34 page_closed_.Wait();
  /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);
  /external/chromium_org/tools/perf/page_sets/
calendar_forward_backward.py 24 action_runner.Wait(2)
36 action_runner.Wait(2)
39 action_runner.Wait(2)
42 action_runner.Wait(2)
45 action_runner.Wait(2)
48 action_runner.Wait(2)
51 action_runner.Wait(2)
54 action_runner.Wait(2)
57 action_runner.Wait(2)
  /external/chromium_org/content/public/test/
frame_load_waiter.cc 16 void FrameLoadWaiter::Wait() {
frame_load_waiter.h 20 void Wait();
  /external/chromium_org/cc/base/
completion_event.h 17 // It is safe to destroy this object as soon as Wait() returns.
35 void Wait() {
41 event_.Wait();
55 // Used to assert that Wait() and Signal() are each called exactly once.
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_integration_test_util.cc 44 checker.Wait();
50 checker.Wait();
56 checker.Wait();
migration_waiter.h 20 // Initialize a waiter that will wait until |watcher|'s migrated types
32 void Wait();
multi_client_status_change_checker.h 32 void Wait();
  /external/chromium_org/content/common/gpu/media/
video_accelerator_unittest_helpers.h 17 // Helper class allowing one thread to wait on a notification from another.
18 // If notifications come in faster than they are Wait()'d for, they are
19 // accumulated (so exactly as many Wait() calls will unblock as Notify() calls
29 // Used by waiters to wait for the next ClientState Notification.
30 StateEnum Wait();
52 StateEnum ClientStateNotification<StateEnum>::Wait() {
55 cv_.Wait();
  /external/chromium_org/chrome/browser/chromeos/file_manager/
drive_test_util.cc 15 // Helper class used to wait for |OnFileSystemMounted| event from a drive file
37 void Wait() {
68 mount_point_waiter.Wait();
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
event_posix.h 34 virtual EventTypeWrapper Wait(unsigned long max_time) OVERRIDE;
47 EventTypeWrapper Wait(timespec& wake_at);
  /external/chromium_org/content/browser/device_sensors/
device_inertial_sensor_browsertest.cc 191 io_loop_finished_event_.Wait();
232 fetcher_->started_orientation_.Wait();
233 fetcher_->stopped_orientation_.Wait();
252 fetcher_->started_light_.Wait();
253 fetcher_->stopped_light_.Wait();
264 fetcher_->started_motion_.Wait();
265 fetcher_->stopped_motion_.Wait();
292 fetcher_->started_light_.Wait();
293 fetcher_->stopped_light_.Wait();
294 same_tab_observer.Wait();
    [all...]
  /external/chromium_org/content/test/
content_browser_test_utils_internal.cc 20 observer.Wait();
  /external/chromium_org/mojo/services/public/cpp/network/
web_socket_read_queue.h 31 void Wait();
web_socket_write_queue.h 33 void Wait();
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
event_wrapper.h 30 // Releases threads who are calling Wait() and has started waiting. Please
31 // note that a thread calling Wait() will not start waiting immediately.
38 // Prevents future Wait() calls from finishing without a new Set() call.
41 // Puts the calling thread into a wait state. The thread may be released
48 virtual EventTypeWrapper Wait(unsigned long max_time) = 0;

Completed in 1638 milliseconds

1 2 3 4 5 6 7 8 91011>>