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

1 2

  /external/webrtc/webrtc/system_wrappers/include/
condition_variable_wrapper.h 26 // some other thread calls Wake() or WakeAll().
34 virtual void Wake() = 0;
  /external/webrtc/webrtc/system_wrappers/source/
condition_variable_event_win.h 27 void Wake();
34 WAKE = 2,
condition_variable_posix.h 29 void Wake() override;
rw_lock_generic.cc 50 write_condition_->Wake();
73 write_condition_->Wake();
condition_variable_native_win.h 41 void Wake();
condition_variable_unittest.cc 91 cond_var_->Wake();
98 cond_var_->Wake();
154 // We have to wake the thread in order to make it obey the stop order.
condition_variable_native_win.cc 96 void ConditionVariableNativeWin::Wake() {
logging_unittest.cc 34 cv_->Wake();
condition_variable_event_win.cc 81 * 3) Introduction of a second event for wake all functionality. This prevents
106 events_[WAKE] = CreateEvent(NULL, // no security attributes
113 CloseHandle(events_[WAKE]);
140 events[0] = events_[WAKE];
168 void ConditionVariableEventWin::Wake() {
175 SetEvent(events_[WAKE]);
condition_variable_posix.cc 124 void ConditionVariablePosix::Wake() {
  /system/core/libbacktrace/
ThreadEntry.h 30 void Wake();
BacktraceCurrent.cpp 133 entry->Wake();
137 // The number indicates that we are waiting for the second Wake() call
142 entry->Wake();
186 // that we are waiting for the first Wake() call made by the thread.
211 entry->Wake();
ThreadEntry.cpp 119 void ThreadEntry::Wake() {
  /external/v8/src/
futex-emulation.h 85 // Pass to Wake() to wake all waiters.
90 // |Wake|, or when the time given in |rel_timeout_ms| elapses. Note that
97 // Wake |num_waiters_to_wake| threads that are waiting on the given |addr|.
101 static Object* Wake(Isolate* isolate, Handle<JSArrayBuffer> array_buffer,
  /external/webrtc/webrtc/base/
task.h 44 // then you Wake() it. Don't tell it to process it right away. If it
120 void Wake();
134 // Called inside to advise that the task should wake and signal an error
task.cc 103 Abort(true); // no need to wake because we're awake
159 // Don't call Wake() because it is a no-op after "done_" is set.
160 // Even if Wake() did run, it clears "blocked_" which isn't desireable.
166 void Task::Wake() {
179 Wake();
223 // No need to wake because we're either awake or in abort
taskrunner.cc 123 // If it has, wake it up, then queue up the next task in line
133 next_timeout_task_->Wake();
  /external/webrtc/webrtc/libjingle/xmpp/
pingtask.cc 77 // Wake ourselves up when it's time to send another ping or when the ping
89 Wake();
jingleinfotask.cc 53 // Wake ourselves so we can go into the done state
55 Wake();
xmpptask.cc 79 Wake();
xmppclient.cc 224 Wake();
385 client_->Wake();
  /external/v8/src/runtime/
runtime-futex.cc 56 return FutexEmulation::Wake(isolate, array_buffer, addr, count);
  /external/webrtc/webrtc/test/channel_transport/
udp_socket_posix.cc 244 _closeBlockingCompletedCond->Wake();
259 _readyForDeletionCond->Wake();
  /prebuilts/go/darwin-x86/src/runtime/
lock_sema.go 25 // Wake up mp, which is or will soon be sleeping on its semaphore.
108 // Dequeued an M. Wake it.
146 // Must be the waiting m. Wake it up.
  /prebuilts/go/linux-x86/src/runtime/
lock_sema.go 25 // Wake up mp, which is or will soon be sleeping on its semaphore.
108 // Dequeued an M. Wake it.
146 // Must be the waiting m. Wake it up.

Completed in 785 milliseconds

1 2