HomeSort by relevance Sort by last modified time
    Searched defs:lock_profiling_threshold_ (Results 1 - 3 of 3) sorted by null

  /art/runtime/
monitor.h 193 static uint32_t lock_profiling_threshold_; member in class:art::Monitor
parsed_options.h 83 unsigned int lock_profiling_threshold_; member in class:art::ParsedOptions
monitor.cc 69 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_;
    [all...]

Completed in 364 milliseconds