HomeSort by relevance Sort by last modified time
    Searched refs:Wait (Results 1 - 25 of 685) 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);
maccocoasocketserver.h 51 virtual bool Wait(int cms, bool process_io);
maccocoasocketserver_unittest.mm 46 // Test that MacCocoaSocketServer::Wait works as expected.
50 server.Wait(1000, true);
60 server.Wait(10000, true);
macsocketserver.h 32 virtual bool Wait(int cms, bool process_io) = 0;
65 virtual bool Wait(int cms, bool process_io);
83 // event loop until the next call to Wait. Other events are dispatched
91 virtual bool Wait(int cms, bool process_io);
106 // next call to Wait. Other events are automatically dispatched to
114 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.
27 void Wait() {
28 page_created_.Wait();
29 page_closed_.Wait();
33 page_created_.Wait();
36 page_closed_.Wait();
  /external/chromium/third_party/libjingle/source/talk/base/
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.
  /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/v8/test/cctest/
test-lock.cc 73 ok = sem->Wait(0);
75 ok = sem->Wait(100);
77 ok = sem->Wait(1000);
82 ok = sem->Wait(0);
84 ok = sem->Wait(100);
86 ok = sem->Wait(1000);
  /external/v8/test/cctest/
test-lock.cc 48 ok = sem->Wait(0);
50 ok = sem->Wait(100);
52 ok = sem->Wait(1000);
57 ok = sem->Wait(0);
59 ok = sem->Wait(100);
61 ok = sem->Wait(1000);
  /external/chromium_org/v8/src/
marking-thread.cc 60 start_marking_semaphore_->Wait();
75 stop_semaphore_->Wait();
86 end_marking_semaphore_->Wait();
  /external/chromium/base/threading/
worker_pool_unittest.cc 40 signaled = test_event.Wait();
42 signaled = long_test_event.Wait();
thread_local_unittest.cc 89 done.Wait();
95 done.Wait();
105 done.Wait();
110 done.Wait();
117 done.Wait();
125 done.Wait();
130 done.Wait();
137 done.Wait();
  /external/webrtc/src/system_wrappers/source/
event_posix.h 35 virtual EventTypeWrapper Wait(unsigned long maxTime);
48 EventTypeWrapper Wait(timespec& tPulse);
event_win.h 27 virtual EventTypeWrapper Wait(unsigned long maxTime);
  /external/webrtc/src/system_wrappers/interface/
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 // Prevents future Wait() calls from finishing without a new Set() call.
43 // Puts the calling thread into a wait state. The thread may be released
50 virtual EventTypeWrapper Wait(unsigned long maxTime) = 0;
  /external/chromium_org/chrome/browser/infobars/
infobars_browsertest.cc 51 observer.Wait();
71 infobar_added_1.Wait();
83 infobar_added_2.Wait();
84 infobar_removed_1.Wait();
93 infobar_removed_2.Wait();
  /external/chromium_org/chrome/browser/ui/login/
login_prompt_browsertest.cc 172 // LOAD_STOP observer is special since we want to be able to wait for
269 load_stop_waiter.Wait();
291 auth_needed_waiter.Wait();
302 auth_supplied_waiter.Wait();
307 auth_needed_waiter.Wait();
314 auth_supplied_waiter.Wait();
339 auth_needed_waiter.Wait();
350 auth_supplied_waiter.Wait();
355 auth_needed_waiter.Wait();
365 auth_supplied_waiter.Wait();
    [all...]
  /external/chromium_org/chrome/browser/chromeos/memory/
oom_priority_manager_browsertest.cc 39 load1.Wait();
48 load2.Wait();
57 load3.Wait();
70 load4.Wait();
80 load5.Wait();
122 reload1.Wait();
136 reload2.Wait();
150 back1.Wait();
157 back2.Wait();
  /art/runtime/
barrier.cc 35 void Barrier::Wait(Thread* self) {
48 condition_.Wait(self);
  /external/chromium_org/base/threading/
thread_local_unittest.cc 95 done.Wait();
101 done.Wait();
111 done.Wait();
116 done.Wait();
123 done.Wait();
131 done.Wait();
136 done.Wait();
143 done.Wait();
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
drive_test_util.cc 19 // Helper class used to wait for |OnFileSystemMounted| event from a drive file
41 void Wait() {
77 mount_point_waiter.Wait();

Completed in 380 milliseconds

1 2 3 4 5 6 7 8 91011>>