Home
last modified time | relevance | path

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

/external/webrtc/webrtc/test/
Dhistogram.cc35 std::map<std::string, SampleInfo> histograms_ GUARDED_BY(histogram_crit_);
42 if (histograms_.find(name) == histograms_.end()) { in HistogramFactoryGetCounts()
43 histograms_.insert(std::make_pair(name, SampleInfo(name))); in HistogramFactoryGetCounts()
45 auto it = histograms_.find(name); in HistogramFactoryGetCounts()
52 if (histograms_.find(name) == histograms_.end()) { in HistogramFactoryGetEnumeration()
53 histograms_.insert(std::make_pair(name, SampleInfo(name))); in HistogramFactoryGetEnumeration()
55 auto it = histograms_.find(name); in HistogramFactoryGetEnumeration()
73 const auto it = histograms_.find(name); in LastHistogramSample()
74 if (it == histograms_.end()) { in LastHistogramSample()
82 const auto it = histograms_.find(name); in NumHistogramSamples()
[all …]
/external/libchrome/base/metrics/
Dstatistics_recorder.cc37 return NULL != histograms_; in IsActive()
52 if (histograms_ == NULL) { in RegisterOrDeleteDuplicate()
57 HistogramMap::iterator it = histograms_->find(name_hash); in RegisterOrDeleteDuplicate()
58 if (histograms_->end() == it) { in RegisterOrDeleteDuplicate()
59 (*histograms_)[name_hash] = histogram; in RegisterOrDeleteDuplicate()
193 if (histograms_ == NULL) in GetHistograms()
196 for (const auto& entry : *histograms_) { in GetHistograms()
223 if (histograms_ == NULL) in FindHistogram()
226 HistogramMap::iterator it = histograms_->find(HashMetricName(name)); in FindHistogram()
227 if (histograms_->end() == it) in FindHistogram()
[all …]
Dstatistics_recorder.h131 static HistogramMap* histograms_;