Searched refs:Wait (Results 1 - 25 of 224) sorted by relevance

123456789

/external/webrtc/webrtc/base/
H A Devent_unittest.cc18 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));
H A Dnullsocketserver_unittest.cc36 EXPECT_TRUE_WAIT(ss_.Wait(SocketServer::kForever, process_io), kTimeout);
41 ss_.Wait(200, true);
H A Dmaccocoasocketserver_unittest.mm32 // Test that MacCocoaSocketServer::Wait works as expected.
36 server.Wait(1000, true);
46 server.Wait(10000, true);
H A Dsocketserver.h24 // notified of asynchronous I/O from this server's Wait method.
38 virtual bool Wait(int cms, bool process_io) = 0;
H A Dnullsocketserver.h25 virtual bool Wait(int cms, bool process_io) { function in class:rtc::NullSocketServer
26 event_.Wait(cms);
H A Devent.h36 // Wait for the event to become signaled, for the specified number of
38 bool Wait(int milliseconds);
H A Dmaccocoasocketserver.h34 bool Wait(int cms, bool process_io) override;
H A Dmacsocketserver.h38 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);
H A Dsharedexclusivelock.cc22 shared_count_is_zero_.Wait(Event::kForever);
H A Dmacsocketserver_unittest.cc35 // Test that MacCFSocketServer::Wait works as expected.
39 server.Wait(1000, true);
49 server.Wait(10000, true);
53 // Test that MacCarbonSocketServer::Wait works as expected.
57 server.Wait(1000, true);
67 server.Wait(10000, true);
71 // Test that MacCarbonAppSocketServer::Wait works as expected.
75 server.Wait(1000, true);
85 server.Wait(10000, true);
/external/chromium-trace/catapult/telemetry/examples/benchmarks/
H A Dsimple_story_set.py20 action_runner.Wait(0.5)
24 action_runner.Wait(0.3)
27 action_runner.Wait(1)
30 with action_runner.CreateInteraction('Wait-two'):
31 action_runner.Wait(1)
/external/valgrind/drd/tests/
H A Dsem_wait.stderr.exp3 Wait would have blocked
/external/webrtc/webrtc/system_wrappers/source/
H A Devent.cc39 EventTypeWrapper Wait(unsigned long max_time) override {
42 return event_.Wait(to_wait) ? kEventSignaled : kEventTimeout;
H A Devent_timer_win.h27 virtual EventTypeWrapper Wait(unsigned long max_time);
H A Devent_timer_posix.h33 EventTypeWrapper Wait(unsigned long max_time) override;
42 EventTypeWrapper Wait(timespec* end_at);
/external/llvm/tools/lli/
H A DRPCChannel.h44 void Wait();
/external/webrtc/webrtc/voice_engine/test/auto_test/standard/
H A Drtp_rtcp_extensions.cc71 bool Wait() { function in class:ExtensionVerifyTransport
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/
H A Dthread_local_unittest.cc94 done.Wait();
100 done.Wait();
110 done.Wait();
115 done.Wait();
122 done.Wait();
130 done.Wait();
135 done.Wait();
142 done.Wait();
H A Dworker_pool_unittest.cc39 test_event_.Wait();
84 test_event.Wait();
85 long_test_event.Wait();
/external/dng_sdk/source/
H A Ddng_abort_sniffer.cpp45 void Wait (dng_priority priority);
127 void dng_priority_manager::Wait (dng_priority priority) function in class:dng_priority_manager
138 fCondition.Wait (fMutex);
210 gPriorityManager.Wait (sniffer->Priority ());
/external/webrtc/webrtc/system_wrappers/include/
H A Devent_wrapper.h32 // Releases threads who are calling Wait() and has started waiting. Please
33 // note that a thread calling Wait() will not start waiting immediately.
50 virtual EventTypeWrapper Wait(unsigned long max_time) = 0;
/external/libchrome/base/synchronization/
H A Dcondition_variable.h23 // while (!work_to_be_done()) Wait(...);
27 // if (!work_to_be_done()) Wait(...); // Don't do this.
36 // called Wait(). This results in POOR performance. A much better
37 // approach to getting a lot of threads out of Wait() is to have each
38 // thread (upon exiting Wait()) call Signal() to free up another
39 // Wait'ing thread. Look at condition_variable_unittest.cc for
56 // assures that the thread that most recently began to Wait() is selected by
58 // thread that has Wait()ed the longest is selected. The default policy
90 // Wait() releases the caller's critical section atomically as it starts to
92 void Wait();
[all...]
/external/lzma/CPP/7zip/Common/
H A DVirtThread.cpp45 Thread.Wait();
/external/v8/test/unittests/base/platform/
H A Dsemaphore-unittest.cc33 free_space_->Wait();
57 used_space_->Wait();
77 semaphore_->Wait();
118 semaphore.Wait();
/external/webrtc/webrtc/modules/utility/source/
H A Dprocess_thread_impl_unittest.cc85 EXPECT_EQ(kEventSignaled, event->Wait(100));
107 EXPECT_EQ(kEventSignaled, event->Wait(100));
133 EXPECT_EQ(kEventSignaled, event->Wait(100));
142 EXPECT_EQ(kEventTimeout, event->Wait(20));
174 EXPECT_EQ(kEventSignaled, event->Wait(milliseconds + 50));
233 EXPECT_EQ(kEventTimeout, event->Wait(1000));
280 EXPECT_EQ(kEventSignaled, started->Wait(100));
282 EXPECT_EQ(kEventSignaled, called->Wait(100));
301 EXPECT_EQ(kEventSignaled, task_ran->Wait(100));

Completed in 774 milliseconds

123456789