Home
last modified time | relevance | path

Searched refs:Wait (Results 1 – 25 of 57) sorted by relevance

123

/art/test/923-monitors/
Dexpected.txt13 Wait
15 Wait
17 Wait
20 Wait
/art/test/132-daemon-locks-shutdown/src/
DMain.java28 Thread t = new Thread(new Wait(sync)); in main()
34 private static class Wait implements Runnable { class in Main
37 public Wait(Object obj) { in Wait() method in Main.Wait
/art/runtime/
Dmonitor_test.cc95 monitor_test_->barrier_->Wait(self); // Let the other thread know we're done. in Run()
104 Monitor::Wait(self, monitor_test_->object_.Get(), millis_, 0, true, in Run()
114 monitor_test_->complete_barrier_->Wait(self); // Wait for test completion. in Run()
141 monitor_test_->barrier_->Wait(self); // Wait for the other thread to set up the monitor. in Run()
149 Monitor::Wait(self, monitor_test_->object_.Get(), millis_, 0, true, in Run()
159 monitor_test_->complete_barrier_->Wait(self); // Wait for test completion. in Run()
179 monitor_test_->barrier_->Wait(self); // Wait for the other thread to set up the monitor. in Run()
194 Monitor::Wait(self, monitor_test_->object_.Get(), 10, 0, true, in Run()
203 monitor_test_->complete_barrier_->Wait(self); // Wait for test completion. in Run()
225 monitor_test_->watchdog_object_.Get()->Wait(self, 30 * 1000, 0); // Wait for 30s, or being in Run()
[all …]
Dthread_pool_test.cc72 thread_pool.Wait(self, true, false); in TEST_F()
99 thread_pool.Wait(self, false, false); in TEST_F()
117 thread_pool.Wait(self, false, false); // We should not deadlock here. in TEST_F()
122 thread_pool.Wait(self, /* do_work= */ true, false); in TEST_F()
159 thread_pool.Wait(self, true, false); in TEST_F()
198 thread_pool.Wait(self, false, false); in TEST_F()
210 thread_pool.Wait(self, false, false); in TEST_F()
Dbarrier_test.cc38 barrier_->Wait(self); in Run()
78 barrier.Wait(self); in TEST_F()
80 thread_pool.Wait(self, true, false); in TEST_F()
Dbarrier.cc43 void Barrier::Wait(Thread* self) { in Wait() function in art::Barrier
68 condition_->Wait(self); in Increment()
Dsignal_set.h46 int Wait() { in Wait() function
Dthread_pool.cc259 task_queue_condition_.Wait(self); in GetTask()
285 void ThreadPool::Wait(Thread* self, bool do_work, bool may_hold_locks) { in Wait() function in art::ThreadPool
298 completion_condition_.Wait(self); in Wait()
Dsignal_catcher.cc84 cond_.Wait(self); in SignalCatcher()
158 int signal_number = signals.Wait(); in WaitForSignal()
Dbarrier.h56 void Wait(Thread* self) REQUIRES(!GetLock());
Dobject_lock.cc38 Monitor::Wait(self_, obj_.Get(), 0, 0, false, kWaiting); in WaitIgnoringInterrupts()
Dthread_pool.h150 void Wait(Thread* self, bool do_work, bool may_hold_locks) REQUIRES(!task_queue_lock_);
Dmonitor.h99 static void Wait(Thread* self,
274 void Wait(Thread* self, int64_t msec, int32_t nsec, bool interruptShouldThrow, ThreadState why)
/art/openjdkjvmti/
Dti_monitor.cc138 bool Wait(art::Thread* self) { in Wait() function in openjdkjvmti::JvmtiMonitor
142 return Wait(self, wait_without_timeout); in Wait()
145 bool Wait(art::Thread* self, uint64_t timeout_in_ms) { in Wait() function in openjdkjvmti::JvmtiMonitor
149 return Wait(self, wait_with_timeout); in Wait()
170 bool Wait(art::Thread* self, T how_to_wait) { in Wait() function in openjdkjvmti::JvmtiMonitor
310 ? monitor->Wait(self, static_cast<uint64_t>(millis)) in RawMonitorWait()
311 : monitor->Wait(self); in RawMonitorWait()
Djvmti_weak_table-inl.h93 Wait(self); in Remove()
101 Wait(self); in RemoveLocked()
138 Wait(self); in Set()
146 Wait(self); in SetLocked()
331 Wait(self);
392 Wait(self);
Djvmti_weak_table.h86 Wait(self); in GetTag()
95 Wait(self); in GetTagLocked()
Dalloc_manager.cc76 alloc_pause_cv_.Wait(self); in PauseForAllocation()
/art/runtime/gc/
Dtask_processor_test.cc84 thread_pool.Wait(self, true, false); in TEST_F()
98 thread_pool.Wait(self, true, false); in TEST_F()
142 thread_pool.Wait(self, true, false); in TEST_F()
Dsystem_weak_test.cc89 Wait(self); in Get()
99 Wait(self); in Set()
Dsystem_weak.h77 void Wait(Thread* self) in Wait() function
Dtask_processor.cc56 cond_.Wait(self); // Empty queue, wait until we are signalled. in GetTask()
/art/runtime/native/
Djava_lang_Object.cc48 soa.Decode<mirror::Object>(java_this)->Wait(soa.Self(), ms, ns); in Object_waitJI()
/art/test/004-ThreadStress/src-art/
DMain.java237 private final static class Wait extends Operation { class in Main
240 public Wait(Object lock) { in Wait() method in Main.Wait
340 frequencyMap.put(new Wait(lock), 0.075); // 15/200 in createDefaultFrequencyMap()
360 frequencyMap.put(new Wait(lock), 0.2); // 40/200 in createLockFrequencyMap()
405 op = new Wait(lock); in updateFrequencyMap()
/art/test/1931-monitor-events/
Dexpected.txt17 Wait finished with timeout.
/art/runtime/base/
Dmutex_test.cc126 state.cv.Wait(Thread::Current()); in RecursiveLockWaitTest()

123