Home
last modified time | relevance | path

Searched refs:current_time (Results 1 – 5 of 5) sorted by relevance

/art/runtime/base/
Dmessage_queue.h125 uint64_t const current_time = MilliTime(); in ReceiveMessage() local
127 if (deadline_milliseconds_.has_value() && deadline_milliseconds_.value() < current_time) { in ReceiveMessage()
141 DCHECK_LE(current_time, deadline_milliseconds_.value()); in ReceiveMessage()
142 int64_t timeout = static_cast<int64_t>(deadline_milliseconds_.value() - current_time); in ReceiveMessage()
/art/runtime/gc/
Dtask_processor.cc59 const uint64_t current_time = NanoTime(); in GetTask() local
64 if (!is_running_ || target_time <= current_time) { in GetTask()
68 DCHECK_GT(target_time, current_time); in GetTask()
70 const uint64_t delta_time = target_time - current_time; in GetTask()
Dtask_processor_test.cc120 const uint64_t current_time = NanoTime(); in TEST_F() local
127 orderings.push_back(std::make_pair(current_time + MsToNs(10U * i), i)); in TEST_F()
Dheap.cc1904 const uint64_t current_time = NanoTime(); in AllocateInternalWithGc() local
1910 current_time - last_time_homogeneous_space_compaction_by_oom_ > in AllocateInternalWithGc()
1912 last_time_homogeneous_space_compaction_by_oom_ = current_time; in AllocateInternalWithGc()
/art/runtime/jit/
Dprofile_saver.cc143 const uint64_t current_time = NanoTime(); in Run() local
144 if (current_time >= end_time) { in Run()
147 period_condition_.TimedWait(self, NsToMs(end_time - current_time), 0); in Run()