Searched refs:TimedWait (Results 1 – 8 of 8) sorted by relevance
/art/test/004-ThreadStress/src-art/ |
D | Main.java | 216 private final static class TimedWait extends Operation { class in Main 221 public TimedWait(Object lock) { in TimedWait() method in Main.TimedWait 339 frequencyMap.put(new TimedWait(lock), 0.05); // 10/200 in createDefaultFrequencyMap() 359 frequencyMap.put(new TimedWait(lock), 0.1); // 20/200 in createLockFrequencyMap() 407 op = new TimedWait(lock); in updateFrequencyMap()
|
/art/runtime/base/ |
D | message_queue.h | 143 cv_.TimedWait(self, timeout, /*ns=*/0); in ReceiveMessage()
|
D | mutex.h | 468 bool TimedWait(Thread* self, int64_t ms, int32_t ns) NO_THREAD_SAFETY_ANALYSIS;
|
D | mutex.cc | 1107 bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) { in TimedWait() function in art::ConditionVariable
|
/art/runtime/ |
D | barrier.cc | 81 timed_out = condition_->TimedWait(self, timeout_ms, timeout_ns); in Increment()
|
D | monitor.cc | 907 timed_out = self->GetWaitConditionVariable()->TimedWait(self, ms, ns); in Wait()
|
/art/runtime/gc/ |
D | task_processor.cc | 73 cond_.TimedWait(self, static_cast<int64_t>(ms_delta), static_cast<int32_t>(ns_delta)); in GetTask()
|
/art/runtime/jit/ |
D | profile_saver.cc | 147 period_condition_.TimedWait(self, NsToMs(end_time - current_time), 0); in Run() 177 period_condition_.TimedWait(self, cur_wait_without_jit, 0); in Run() 196 period_condition_.TimedWait(self, NsToMs(min_save_period_ns - sleep_time), 0); in Run()
|