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

/art/runtime/
H A Dmonitor.h193 static uint32_t lock_profiling_threshold_; member in class:art::Monitor
H A Dparsed_options.h83 unsigned int lock_profiling_threshold_; member in class:art::ParsedOptions
H A Dmonitor.cc69 uint32_t Monitor::lock_profiling_threshold_ = 0; member in class:art::Monitor
79 lock_profiling_threshold_ = lock_profiling_threshold;
169 if (success && owner_ != nullptr && lock_profiling_threshold_ != 0) {
241 if (lock_profiling_threshold_ != 0) {
250 const bool log_contention = (lock_profiling_threshold_ != 0);
268 if (wait_ms >= lock_profiling_threshold_) {
271 sample_percent = 100 * wait_ms / lock_profiling_threshold_;

Completed in 6 milliseconds