Searched defs:Wait (Results 1 - 7 of 7) sorted by relevance

/art/runtime/
H A Dsignal_set.h46 int Wait() { function in class:art::SignalSet
H A Dbarrier.cc35 void Barrier::Wait(Thread* self) { function in class:art::Barrier
48 condition_.Wait(self);
H A Dthread_pool.cc48 thread_pool_->creation_barier_.Wait(self);
91 // Wait for all of the threads to attach.
92 creation_barier_.Wait(self);
111 // Wait for the threads to finish.
148 task_queue_condition_.Wait(self);
174 void ThreadPool::Wait(Thread* self, bool do_work, bool may_hold_locks) { function in class:art::ThreadPool
182 // Wait until each thread is waiting and the task list is empty.
186 completion_condition_.Wait(self);
H A Dmonitor.cc352 // Wait should have already cleared the fields.
369 * Wait on a monitor until timeout, interrupt, or notification. Used for
391 void Monitor::Wait(Thread* self, int64_t ms, int32_t ns, function in class:art::Monitor
466 // Wait for a notification or a timeout to occur.
468 self->wait_cond_->Wait(self);
759 void Monitor::Wait(Thread* self, mirror::Object *obj, int64_t ms, int32_t ns, function in class:art::Monitor
780 LW_MONITOR(*thinp)->Wait(self, ms, ns, interruptShouldThrow, why);
/art/runtime/mirror/
H A Dobject-inl.h66 inline void Object::Wait(Thread* self) { function in class:art::mirror::Object
67 Monitor::Wait(self, this, 0, 0, true, kWaiting);
70 inline void Object::Wait(Thread* self, int64_t ms, int32_t ns) { function in class:art::mirror::Object
71 Monitor::Wait(self, this, ms, ns, true, kTimedWaiting);
/art/dex2oat/
H A Ddex2oat.cc487 self->Wait();
511 void Wait() { function in class:art::WatchDog
/art/runtime/base/
H A Dmutex.cc834 void ConditionVariable::Wait(Thread* self) { function in class:art::ConditionVariable

Completed in 428 milliseconds