Lines Matching refs:reporter_
119 reporter_.reset(new MockMetricsReporter(std::move(config), Runtime::Current())); in SetupReporter()
121 reporter_->backends_.emplace_back(backend_); in SetupReporter()
128 reporter_ = nullptr; in TearDown()
133 return reporter_->ShouldReportAtStartup(); in ShouldReportAtStartup()
137 return reporter_->ShouldContinueReporting(); in ShouldContinueReporting()
141 return reporter_->GetNextPeriodSeconds(); in GetNextPeriodSeconds()
145 reporter_->ReportMetrics(); in ReportMetrics()
149 reporter_->NotifyStartupCompleted(); in NotifyStartupCompleted()
155 bool result = reporter_->MaybeStartBackgroundThread(session_data_); in MaybeStartBackgroundThread()
157 reporter_->art_metrics_->JitMethodCompileCount()->Add(1); in MaybeStartBackgroundThread()
158 reporter_->art_metrics_->ClassVerificationCount()->Add(2); in MaybeStartBackgroundThread()
196 reporter_->NotifyAppInfoUpdated(app_info); in NotifyAppInfoUpdated()
200 std::unique_ptr<MockMetricsReporter> reporter_; member in art::metrics::MetricsReporterTest