/art/test/923-monitors/ |
D | expected.txt | 13 Wait 15 Wait 17 Wait 20 Wait
|
/art/test/132-daemon-locks-shutdown/src/ |
D | Main.java | 28 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/ |
D | thread_pool_test.cc | 72 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()
|
D | monitor_test.cc | 95 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 …]
|
D | barrier_test.cc | 38 barrier_->Wait(self); in Run() 78 barrier.Wait(self); in TEST_F() 80 thread_pool.Wait(self, true, false); in TEST_F()
|
D | barrier.cc | 43 void Barrier::Wait(Thread* self) { in Wait() function in art::Barrier 68 condition_->Wait(self); in Increment()
|
D | signal_set.h | 46 int Wait() { in Wait() function
|
D | thread_pool.cc | 247 task_queue_condition_.Wait(self); in GetTask() 273 void ThreadPool::Wait(Thread* self, bool do_work, bool may_hold_locks) { in Wait() function in art::ThreadPool 286 completion_condition_.Wait(self); in Wait()
|
D | signal_catcher.cc | 84 cond_.Wait(self); in SignalCatcher() 158 int signal_number = signals.Wait(); in WaitForSignal()
|
D | object_lock.cc | 38 Monitor::Wait(self_, obj_.Get(), 0, 0, false, kWaiting); in WaitIgnoringInterrupts()
|
D | barrier.h | 56 void Wait(Thread* self) REQUIRES(!GetLock());
|
D | thread_pool.h | 150 void Wait(Thread* self, bool do_work, bool may_hold_locks) REQUIRES(!task_queue_lock_);
|
D | monitor.h | 99 static void Wait(Thread* self, 274 void Wait(Thread* self, int64_t msec, int32_t nsec, bool interruptShouldThrow, ThreadState why)
|
/art/openjdkjvmti/ |
D | ti_monitor.cc | 138 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()
|
D | jvmti_weak_table-inl.h | 93 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);
|
D | jvmti_weak_table.h | 86 Wait(self); in GetTag() 95 Wait(self); in GetTagLocked()
|
D | alloc_manager.cc | 76 alloc_pause_cv_.Wait(self); in PauseForAllocation()
|
/art/runtime/gc/ |
D | task_processor_test.cc | 84 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()
|
D | system_weak_test.cc | 89 Wait(self); in Get() 99 Wait(self); in Set()
|
D | system_weak.h | 77 void Wait(Thread* self) in Wait() function
|
D | task_processor.cc | 56 cond_.Wait(self); // Empty queue, wait until we are signalled. in GetTask()
|
/art/runtime/native/ |
D | java_lang_Object.cc | 48 soa.Decode<mirror::Object>(java_this)->Wait(soa.Self(), ms, ns); in Object_waitJI()
|
/art/test/004-ThreadStress/src-art/ |
D | Main.java | 237 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/ |
D | expected.txt | 17 Wait finished with timeout.
|
/art/runtime/base/ |
D | mutex_test.cc | 126 state.cv.Wait(Thread::Current()); in RecursiveLockWaitTest()
|