Searched refs:TimedWait (Results 1 - 8 of 8) sorted by relevance

/art/runtime/
H A Dbarrier.cc70 timed_out = condition_.TimedWait(self, timeout_ms, timeout_ns);
H A Dprofiler.cc196 profiler->period_condition_.TimedWait(self, delay_secs * 1000, 0);
H A Dmonitor.cc656 self->GetWaitConditionVariable()->TimedWait(self, ms, ns);
/art/test/004-ThreadStress/src/
H A DMain.java45 // -timedwait:X .... frequency of TimedWait
182 private final static class TimedWait extends Operation { class in class:Main
187 public TimedWait(Object lock) { method in class:Main.TimedWait
250 frequencyMap.put(new TimedWait(lock), 0.05); // 10/200
259 frequencyMap.put(new TimedWait(lock), 0.2);
303 op = new TimedWait(lock);
/art/runtime/gc/
H A Dtask_processor.cc68 cond_->TimedWait(self, static_cast<int64_t>(ms_delta), static_cast<int32_t>(ns_delta));
/art/runtime/jit/
H A Dprofile_saver.cc96 period_condition_.TimedWait(self, NsToMs(end_time - current_time), 0);
123 period_condition_.TimedWait(self, NsToMs(kMinSavePeriodNs - sleep_time), 0);
/art/runtime/base/
H A Dmutex.h451 // TODO: No thread safety analysis on Wait and TimedWait as they call mutex operations via their
454 bool TimedWait(Thread* self, int64_t ms, int32_t ns) NO_THREAD_SAFETY_ANALYSIS;
H A Dmutex.cc884 bool ConditionVariable::TimedWait(Thread* self, int64_t ms, int32_t ns) { function in class:art::ConditionVariable
931 PLOG(FATAL) << "TimedWait failed for " << name_;

Completed in 432 milliseconds