Home
last modified time | relevance | path

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

/art/runtime/
Dmonitor.cc69 uint32_t Monitor::lock_profiling_threshold_ = 0; member in art::Monitor
79 lock_profiling_threshold_ = lock_profiling_threshold; in Init()
169 if (success && owner_ != nullptr && lock_profiling_threshold_ != 0) { in Install()
241 if (lock_profiling_threshold_ != 0) { in Lock()
250 const bool log_contention = (lock_profiling_threshold_ != 0); in Lock()
268 if (wait_ms >= lock_profiling_threshold_) { in Lock()
271 sample_percent = 100 * wait_ms / lock_profiling_threshold_; in Lock()
Dparsed_options.h83 unsigned int lock_profiling_threshold_; variable
Dmonitor.h193 static uint32_t lock_profiling_threshold_; variable
Dparsed_options.cc248 lock_profiling_threshold_ = 0; in Parse()
514 if (!ParseUnsignedInteger(option, ':', &lock_profiling_threshold_)) { in Parse()
Druntime.cc667 Monitor::Init(options->lock_profiling_threshold_, options->hook_is_sensitive_thread_); in Init()