Searched refs:profiler_options_ (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | parsed_options.cc | 561 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 …]
|
D | parsed_options.h | 96 ProfilerOptions profiler_options_; variable
|
D | runtime.h | 145 return profiler_options_; in GetProfilerOptions() 601 ProfilerOptions profiler_options_; variable
|
D | runtime.cc | 454 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()
|