Home
last modified time | relevance | path

Searched refs:wait_ms (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dmonitor_android.cc52 void Monitor::LogContentionEvent(Thread* self, uint32_t wait_ms, uint32_t sample_percent, in LogContentionEvent() argument
77 cp = EventLogWriteInt(cp, wait_ms); in LogContentionEvent()
Dmonitor.cc266 uint64_t wait_ms = MilliTime() - wait_start_ms; in Lock() local
268 if (wait_ms >= lock_profiling_threshold_) { in Lock()
271 sample_percent = 100 * wait_ms / lock_profiling_threshold_; in Lock()
277 if (wait_ms > kLongWaitMs && owners_method != nullptr) { in Lock()
281 << PrettyDuration(MsToNs(wait_ms)); in Lock()
283 LogContentionEvent(self, wait_ms, sample_percent, owners_filename, owners_line_number); in Lock()
Dmonitor.h154 void LogContentionEvent(Thread* self, uint32_t wait_ms, uint32_t sample_percent,