Searched refs:profiler_options_ (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | parsed_options.cc | 560 profiler_options_.enabled_ = true; in Parse() 566 if (!ParseUnsignedInteger(option, ':', &profiler_options_.period_s_)) { in Parse() 570 if (!ParseUnsignedInteger(option, ':', &profiler_options_.duration_s_)) { in Parse() 574 if (!ParseUnsignedInteger(option, ':', &profiler_options_.interval_us_)) { in Parse() 578 if (!ParseDouble(option, ':', 1.0, 10.0, &profiler_options_.backoff_coefficient_)) { in Parse() 582 profiler_options_.start_immediately_ = true; in Parse() 584 if (!ParseDouble(option, ':', 0.0, 100.0, &profiler_options_.top_k_threshold_)) { in Parse() 588 if (!ParseDouble(option, ':', 0.0, 100.0, &profiler_options_.top_k_change_threshold_)) { in Parse() 592 profiler_options_.profile_type_ = kProfilerMethod; in Parse() 594 profiler_options_.profile_type_ = kProfilerBoundedStack; in Parse() [all …]
|
D | parsed_options.h | 96 ProfilerOptions profiler_options_; variable
|
D | runtime.h | 149 return profiler_options_; in GetProfilerOptions() 612 ProfilerOptions profiler_options_; variable
|
D | runtime.cc | 467 if (profiler_options_.IsEnabled() && !profile_output_filename_.empty()) { in Start() 848 profiler_options_ = options->profiler_options_; in Init() 1352 BackgroundMethodSamplingProfiler::Start(profile_output_filename_, profiler_options_); in StartProfiler()
|