Lines Matching refs:profiler_options_
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()
597 if (!ParseUnsignedInteger(option, ':', &profiler_options_.max_stack_depth_)) { in Parse()