HomeSort by relevance Sort by last modified time
    Searched full:wait_id (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/mojo/public/python/src/
python_system_helper.cc 91 void set_wait_id(int wait_id) { wait_id_ = wait_id; }
156 MojoAsyncWaitID wait_id = async_waiter_->AsyncWait( local
158 callbacks_[wait_id] = callback;
159 runner->set_wait_id(wait_id);
160 return wait_id;
163 void PythonAsyncWaiter::CancelWait(MojoAsyncWaitID wait_id) {
164 if (callbacks_.find(wait_id) != callbacks_.end()) {
165 async_waiter_->CancelWait(wait_id);
166 callbacks_.erase(wait_id);
    [all...]
python_system_helper.h 34 void CancelWait(MojoAsyncWaitID wait_id);
  /external/chromium_org/mojo/environment/
default_async_waiter_impl.cc 34 void CancelWait(MojoAsyncWaitID wait_id) {
35 delete reinterpret_cast<common::HandleWatcher*>(wait_id);
  /external/chromium_org/mojo/public/c/environment/
async_waiter.h 18 // - |CancelWait(wait_id)| may only be called on the same thread as the
19 // |AsyncWait()| that provided |wait_id| was called on.
52 // Cancels an outstanding async wait (specified by |wait_id|) initiated by
62 void (*CancelWait)(MojoAsyncWaitID wait_id);
  /external/chromium_org/mojo/public/cpp/environment/lib/
default_async_waiter.cc 79 void CancelWait(MojoAsyncWaitID wait_id) {
80 delete reinterpret_cast<RunLoopHandlerImpl*>(wait_id);
  /external/chromium_org/mojo/public/cpp/environment/tests/
async_waiter_unittest.cc 53 void CallCancelWait(MojoAsyncWaitID wait_id) {
54 Environment::GetDefaultAsyncWaiter()->CancelWait(wait_id);
  /external/chromium_org/mojo/public/python/mojo/
system.pyx 331 cdef c_environment.MojoAsyncWaitID wait_id = _ASYNC_WAITER.AsyncWait(
337 _ASYNC_WAITER.CancelWait(wait_id)

Completed in 146 milliseconds