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

/art/runtime/
H A Dmonitor.h236 static uint32_t lock_profiling_threshold_; member in class:art::Monitor
H A Dmonitor.cc73 uint32_t Monitor::lock_profiling_threshold_ = 0; member in class:art::Monitor
83 lock_profiling_threshold_ = lock_profiling_threshold;
173 if (success && owner_ != nullptr && lock_profiling_threshold_ != 0) {
237 if (lock_profiling_threshold_ != 0) {
246 const bool log_contention = (lock_profiling_threshold_ != 0);
270 if (wait_ms >= lock_profiling_threshold_) {
273 sample_percent = 100 * wait_ms / lock_profiling_threshold_;

Completed in 153 milliseconds