Home
last modified time | relevance | path

Searched refs:profiler_options_ (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dparsed_options.cc561 profiler_options_.enabled_ = true; in Parse()
567 if (!ParseUnsignedInteger(option, ':', &profiler_options_.period_s_)) { in Parse()
571 if (!ParseUnsignedInteger(option, ':', &profiler_options_.duration_s_)) { in Parse()
575 if (!ParseUnsignedInteger(option, ':', &profiler_options_.interval_us_)) { in Parse()
579 if (!ParseDouble(option, ':', 1.0, 10.0, &profiler_options_.backoff_coefficient_)) { in Parse()
583 profiler_options_.start_immediately_ = true; in Parse()
585 if (!ParseDouble(option, ':', 0.0, 100.0, &profiler_options_.top_k_threshold_)) { in Parse()
589 if (!ParseDouble(option, ':', 0.0, 100.0, &profiler_options_.top_k_change_threshold_)) { in Parse()
593 profiler_options_.profile_type_ = kProfilerMethod; in Parse()
595 profiler_options_.profile_type_ = kProfilerBoundedStack; in Parse()
[all …]
Dparsed_options.h96 ProfilerOptions profiler_options_; variable
Druntime.h145 return profiler_options_; in GetProfilerOptions()
601 ProfilerOptions profiler_options_; variable
Druntime.cc454 if (profiler_options_.IsEnabled() && !profile_output_filename_.empty()) { in Start()
832 profiler_options_ = options->profiler_options_; in Init()
1349 BackgroundMethodSamplingProfiler::Start(profile_output_filename_, profiler_options_); in StartProfiler()