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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/base/
event_unittest.cc 35 ASSERT_TRUE(event.Wait(0));
40 ASSERT_FALSE(event.Wait(0));
43 ASSERT_TRUE(event.Wait(0));
44 ASSERT_TRUE(event.Wait(0));
47 ASSERT_FALSE(event.Wait(0));
52 ASSERT_FALSE(event.Wait(0));
55 ASSERT_TRUE(event.Wait(0));
56 ASSERT_FALSE(event.Wait(0));
socketserver.h 37 // Provides the ability to wait for activity on a set of sockets. The Thread
41 // notified of asynchronous I/O from this server's Wait method.
53 virtual bool Wait(int cms, bool process_io) = 0;
55 // Causes the current wait (if one is in progress) to wake up.
nullsocketserver.h 42 virtual bool Wait(int cms, bool process_io) {
43 event_.Wait(cms);
nullsocketserver_unittest.cc 53 EXPECT_TRUE_WAIT(ss_.Wait(talk_base::kForever, process_io), kTimeout);
58 ss_.Wait(200, true);
59 // The actual wait time is dependent on the resolution of the timer used by
event.h 51 bool Wait(int cms);
  /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 36 EXPECT_TRUE_WAIT(ss_.Wait(rtc::kForever, process_io), kTimeout);
41 ss_.Wait(200, true);
42 // The actual wait time is dependent on the resolution of the timer used by
  /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.
27 void Wait() {
28 page_created_.Wait();
29 page_closed_.Wait();
33 page_created_.Wait();
36 page_closed_.Wait();
  /external/chromium_org/tools/perf/page_sets/
calendar_forward_backward.py 26 action_runner.Wait(2)
38 action_runner.Wait(2)
41 action_runner.Wait(2)
44 action_runner.Wait(2)
47 action_runner.Wait(2)
50 action_runner.Wait(2)
53 action_runner.Wait(2)
56 action_runner.Wait(2)
59 action_runner.Wait(2)
webrtc_cases.py 27 action_runner.Wait(10)
42 action_runner.Wait(2)
44 action_runner.Wait(10)
49 action_runner.Wait(2)
51 action_runner.Wait(10)
  /external/chromium_org/content/test/
frame_load_waiter.cc 16 void FrameLoadWaiter::Wait() {
frame_load_waiter.h 20 void Wait();
content_browser_test_utils_internal.cc 20 observer.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/valgrind/main/drd/tests/
sem_wait.stderr.exp 3 Wait would have blocked
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_integration_test_util.cc 44 checker.Wait();
50 checker.Wait();
56 checker.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 19 // Helper class used to wait for |OnFileSystemMounted| event from a drive file
41 void Wait() {
73 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/webrtc/src/system_wrappers/source/
event_posix.h 35 virtual EventTypeWrapper Wait(unsigned long maxTime);
48 EventTypeWrapper Wait(timespec& tPulse);
  /external/chromium_org/apps/shell/browser/
shell_browsertest.cc 17 // Test that we can open an app window and wait for it to load.
29 test_pass_observer.Wait();
  /external/chromium_org/mojo/public/cpp/bindings/lib/
sync_dispatcher.cc 21 rv = Wait(handle, MOJO_HANDLE_SIGNAL_READABLE, MOJO_DEADLINE_INDEFINITE);

Completed in 536 milliseconds

1 2 3 4 5 6 7 8 91011>>