Searched defs:total_delay (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Dthread_list.cc377 const uint64_t total_delay = NanoTime() - start_time; local
380 if (UNLIKELY(total_delay > kLongWaitThreshold)) {
381 LOG(WARNING) << "Long wait of " << PrettyDuration(total_delay) << " for "
983 const uint64_t total_delay = NanoTime() - start_time; local
984 if (total_delay >= thread_suspend_timeout_ns_) {
1000 total_delay > static_cast<uint64_t>(kThreadSuspendMaxYieldUs) * 1000) {
1094 const uint64_t total_delay = NanoTime() - start_time; local
1095 if (total_delay >= thread_suspend_timeout_ns_) {
1106 total_delay > static_cast<uint64_t>(kThreadSuspendMaxYieldUs) * 1000) {

Completed in 350 milliseconds