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

/art/test/132-daemon-locks-shutdown/src/
H A DMain.java28 Thread t = new Thread(new Wait(sync));
34 private static class Wait implements Runnable { class in class:Main
37 public Wait(Object obj) { method in class:Main.Wait
/art/runtime/
H A Dsignal_set.h46 int Wait() { function in class:art::SignalSet
H A Dbarrier.cc42 void Barrier::Wait(Thread* self) { function in class:art::Barrier
67 condition_.Wait(self);
H A Dthread_pool.cc86 thread_pool_->creation_barier_.Wait(self);
144 // Wait for all of the threads to attach.
145 creation_barier_.Wait(self);
164 // Wait for the threads to finish.
201 task_queue_condition_.Wait(self);
227 void ThreadPool::Wait(Thread* self, bool do_work, bool may_hold_locks) { function in class:art::ThreadPool
236 // Wait until each thread is waiting and the task list is empty.
240 completion_condition_.Wait(self);
H A Dmonitor.cc316 // Wait() requires a deeper call stack to be useful. Otherwise you'll see "Waiting at
459 // the first time, not during a Wait wakeup.
469 // Reacquire monitor_lock_ without mutator_lock_ for Wait.
473 monitor_contenders_.Wait(self); // Still contended so wait.
727 void Monitor::Wait(Thread* self, int64_t ms, int32_t ns, function in class:art::Monitor
805 // Wait for a notification or a timeout to occur.
807 self->GetWaitConditionVariable()->Wait(self);
841 AtraceMonitorUnlock(); // End Wait().
1189 void Monitor::Wait(Thread* self, mirror::Object *obj, int64_t ms, int32_t ns, function in class:art::Monitor
1232 mon->Wait(sel
[all...]
H A Dthread.cc1441 void Wait(Thread* self, ThreadState suspend_state) { function in class:art::BarrierClosure
1504 barrier_closure.Wait(self, suspend_state);
1530 // We became runnable again. Wait till the suspend triggered in ModifySuspendCount
/art/openjdkjvmti/
H A Dti_monitor.cc135 bool Wait(art::Thread* self) { function in class:openjdkjvmti::JvmtiMonitor
139 return Wait(self, wait_without_timeout);
142 bool Wait(art::Thread* self, uint64_t timeout_in_ms) { function in class:openjdkjvmti::JvmtiMonitor
146 return Wait(self, wait_with_timeout);
167 bool Wait(art::Thread* self, T how_to_wait) { function
293 ? monitor->Wait(self, static_cast<uint64_t>(millis))
294 : monitor->Wait(self);
/art/test/004-ThreadStress/src-art/
H A DMain.java53 // -wait:X ........... frequency of Wait (double)
235 private final static class Wait extends Operation { class in class:Main
238 public Wait(Object lock) { method in class:Main.Wait
327 frequencyMap.put(new Wait(lock), 0.075); // 15/200
347 frequencyMap.put(new Wait(lock), 0.2); // 40/200
389 op = new Wait(lock);
559 // Synchronization: Wait until the auxiliary thread is
567 // Synchronization: Wait for the auxiliary thread to die.
659 // Wait until all runners and daemons reach the starting point.
696 // up threads in operation Wait
[all...]
/art/runtime/mirror/
H A Dobject-inl.h117 inline void Object::Wait(Thread* self) { function in class:art::mirror::Object
118 Monitor::Wait(self, this, 0, 0, true, kWaiting);
121 inline void Object::Wait(Thread* self, int64_t ms, int32_t ns) { function in class:art::mirror::Object
122 Monitor::Wait(self, this, ms, ns, true, kTimedWaiting);
/art/runtime/base/
H A Dmutex.cc106 // Wait for an amount of time that roughly increases in the argument i.
937 void ConditionVariable::Wait(Thread* self) { function in class:art::ConditionVariable
/art/dex2oat/
H A Ddex2oat.cc550 self->Wait();
574 void Wait() { function in class:art::WatchDog

Completed in 2366 milliseconds