Home
last modified time | relevance | path

Searched refs:report_histogram_ (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/base/metrics/
Dhistogram_base.cc64 HistogramBase* HistogramBase::report_histogram_ = nullptr; member in base::HistogramBase
129 DCHECK(!report_histogram_); in EnableActivityReportHistogram()
144 report_histogram_ = LinearHistogram::FactoryGet( in EnableActivityReportHistogram()
147 report_histogram_->Add(HISTOGRAM_REPORT_CREATED); in EnableActivityReportHistogram()
194 if (!report_histogram_) in ReportHistogramActivity()
201 report_histogram_->Add(HISTOGRAM_REPORT_HISTOGRAM_CREATED); in ReportHistogramActivity()
219 report_histogram_->Add(report_type); in ReportHistogramActivity()
221 report_histogram_->Add(HISTOGRAM_REPORT_FLAG_PERSISTENT); in ReportHistogramActivity()
223 report_histogram_->Add(HISTOGRAM_REPORT_FLAG_UMA_STABILITY); in ReportHistogramActivity()
225 report_histogram_->Add(HISTOGRAM_REPORT_FLAG_UMA_TARGETED); in ReportHistogramActivity()
[all …]
Dhistogram_base_unittest.cc25 HistogramBase::report_histogram_ = nullptr; in ~HistogramBaseTest()
37 return HistogramBase::report_histogram_; in GetCreationReportHistogram()
Dhistogram_base.h266 static HistogramBase* report_histogram_; variable