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

1 2

  /external/chromium/third_party/libjingle/source/talk/base/
event.cc 84 bool Event::Wait(int cms) {
149 bool Event::Wait(int cms) {
firewallsocketserver.h 83 virtual bool Wait(int cms, bool process_io) {
84 return server_->Wait(cms, process_io);
physicalsocketserver.cc 684 // and cleared from Wait(). There is a race involved in this, but it is
    [all...]
win32socketserver.cc 727 bool Win32SocketServer::Wait(int cms, bool process_io) {
744 // Sit and wait forever for a WakeUp. This is the Thread::Send case.
  /external/webrtc/src/system_wrappers/source/
event_win.cc 41 EventTypeWrapper EventWindows::Wait(unsigned long maxTime)
event_posix.cc 126 EventTypeWrapper EventPosix::Wait(unsigned long timeout)
181 EventTypeWrapper EventPosix::Wait(timespec& tPulse)
277 switch(_timerEvent->Wait(tEnd))
  /external/chromium/base/synchronization/
condition_variable_posix.cc 31 void ConditionVariable::Wait() {
waitable_event_win.cc 49 bool WaitableEvent::Wait() {
80 << "Can only wait on " << MAXIMUM_WAIT_OBJECTS << " with WaitMany";
89 FALSE, // don't wait for all the objects
condition_variable_win.cc 32 // was not willing to wait for all the threads to terminate. Such hasty
46 void ConditionVariable::Wait() {
47 // Default to "wait forever" timing, which means have to get a Signal()
48 // or Broadcast() to come out of this wait state.
109 // wait. This means that (worst case) we may over time create as many cv_event
110 // objects as there are threads simultaneously using this instance's Wait()
113 // We hold internal_lock, courtesy of Wait().
129 // RecycleEvent() takes a cv_event that was previously used for Wait()ing, and
130 // recycles it for use in future Wait() calls for this or other threads.
135 // We hold internal_lock, courtesy of Wait()
    [all...]
waitable_event_posix.cc 12 // A WaitableEvent on POSIX is implemented as a wait-list. Currently we don't
18 // waiter is either an async wait, in which case we have a Task and the
19 // MessageLoop to run it on, or a blocking wait, in which case we have the
22 // Waiting involves grabbing the lock and adding oneself to the wait list. Async
26 // Waiting on multiple events is handled by adding a single, synchronous wait to
27 // the wait-list of many events. An event passes a pointer to itself when
131 // unlocking it and removing it from the wait-list. Called with lock held.
152 bool WaitableEvent::Wait() {
206 sw.cv()->Wait();
223 DCHECK(count) << "Cannot wait on no events"
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
SDLOSXCAGuard.h 87 to properly manage the recursive nesting. The Wait calls with timeouts
102 void (*Wait)(struct S_SDLOSXCAGuard *cag);
  /hardware/ti/omap4xxx/libtiutils/
Semaphore.cpp 118 @brief Wait operation
123 @return One of the android error codes based on semaphore wait operation
125 status_t Semaphore::Wait()
133 ///Wait and return the status after signalling
185 @brief Wait operation with a timeout
190 @return One of the android error codes based on semaphore wait operation
216 ///Wait for the timeout or signal and return the result based on whichever event occurred first
  /external/chromium/chrome/browser/chromeos/login/
screen_locker_browsertest.cc 31 // An object that wait for lock state and fullscreen state.
61 // Wait until the two conditions are met.
62 void Wait(bool locker_state, bool fullscreen) {
233 waiter.Wait(false /* not locked */, true /* full screen */);
242 waiter.Wait(true /* locked */, false /* full screen */);
  /external/chromium/chrome/browser/
plugin_data_remover.cc 68 void PluginDataRemover::Wait() {
72 result = event_->Wait();
  /external/valgrind/unittest/
thread_wrappers.h 227 // the ~ThreadPool() is called: we wait workers to finish
256 //! Wait workers to finish, then join all threads.
304 void Wait() {
thread_wrappers_win.h 154 void Wait(Mutex *mu) {
thread_wrappers_pthread.h 214 bool signal_at_unlock_; // Set to true if Wait was called.
222 void Wait(Mutex *mu) { CHECK(0 == pthread_cond_wait(&cv_, &mu->mu_)); }
  /external/webkit/Source/WebCore/platform/
Cursor.h 112 Wait,
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebCookieJar.cpp 220 void Wait(int numCallbacks) {
226 m_condition.Wait();
227 ASSERT(lastCount != m_count, "Wait finished without incrementing m_count %d %d", m_count, lastCount);
249 // Flush both cookie stores (private and non-private), wait for 2 callbacks.
253 semaphore->Wait(2);
  /external/qemu/distrib/sdl-1.2.15/src/audio/symbian/
SDL_epocaudio.cpp 130 void Wait(TTimeIntervalMicroSeconds32 aWait);
140 CSimpleWait* wait = new (ELeave) CSimpleWait(); local
141 CleanupStack::PushL(wait);
142 wait->ConstructL();
144 return wait;
147 void CSimpleWait::Wait(TTimeIntervalMicroSeconds32 aWait)
174 void Wait();
398 void CEpocAudio::Wait()
428 // iWait->Wait(10000); //just give some time...
576 SDL_TRACE1("wait %d audio\n", CEpocAudio::AudioLib().StreamPlayer(KSfxChannel).SyncTime())
    [all...]
  /external/v8/src/
platform-nullos.cc 449 virtual void Wait() {
  /external/chromium/net/proxy/
proxy_config_service_linux_unittest.cc 268 Wait();
278 Wait();
297 Wait();
322 void Wait() {
323 event_.Wait();
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 105 // specified by wait(2).
246 virtual int Wait();
315 int ForkingDeathTest::Wait() {
368 // specified by wait(2)
  /external/chromium/testing/gtest/test/
gtest-death-test_test.cc 47 # include <sys/wait.h> // For waitpid.
793 // The value a MockDeathTest will return from its Wait method.
800 // Number of times Wait was called.
831 virtual int Wait() {
    [all...]
  /external/gtest/test/
gtest-death-test_test.cc 47 # include <sys/wait.h> // For waitpid.
793 // The value a MockDeathTest will return from its Wait method.
800 // Number of times Wait was called.
831 virtual int Wait() {
    [all...]

Completed in 620 milliseconds

1 2