Searched refs:histogram_type (Results 1 – 5 of 5) sorted by relevance
/art/libartbase/base/metrics/ |
D | metrics_test.cc | 217 void ReportHistogram(DatumId histogram_type, in TEST_F() argument 221 if (histogram_type == DatumId::kYoungGcCollectionTime) { in TEST_F() 223 << DatumName(histogram_type); in TEST_F() 226 << DatumName(histogram_type); in TEST_F() 232 << DatumName(histogram_type); in TEST_F() 285 void ReportHistogram(DatumId histogram_type, in TEST_F() argument 293 EXPECT_TRUE(nonzero) << "Unexpected value for histogram " << DatumName(histogram_type); in TEST_F() 314 void ReportHistogram([[maybe_unused]] DatumId histogram_type, in TEST_F() argument 319 EXPECT_EQ(value, 0u) << "Unexpected value for histogram " << DatumName(histogram_type); in TEST_F() 341 void ReportHistogram(DatumId histogram_type, in TEST_F() argument [all …]
|
D | metrics_test.h | 43 void ReportHistogram([[maybe_unused]] DatumId histogram_type, in ReportHistogram() argument 65 template <DatumId histogram_type, size_t num_buckets, int64_t low_value, int64_t high_value> 67 const MetricsHistogram<histogram_type, num_buckets, low_value, high_value>& histogram) { in GetBuckets() argument
|
D | metrics_common.cc | 132 void StringBackend::ReportHistogram(DatumId histogram_type, in ReportHistogram() argument 136 formatter_->FormatReportHistogram(histogram_type, minimum_value_, maximum_value_, buckets); in ReportHistogram() 159 void TextFormatter::FormatReportHistogram(DatumId histogram_type, in FormatReportHistogram() argument 163 os_ << " " << DatumName(histogram_type) << ": range = " in FormatReportHistogram() 224 void XmlFormatter::FormatReportHistogram(DatumId histogram_type, in FormatReportHistogram() argument 231 metrics->InsertNewChildElement(DatumName(histogram_type).data()); in FormatReportHistogram()
|
D | metrics.h | 274 virtual void ReportHistogram(DatumId histogram_type, 286 template <DatumId histogram_type, size_t num_buckets, int64_t low_value, int64_t high_value> 561 virtual void FormatReportHistogram(DatumId histogram_type, 581 void FormatReportHistogram(DatumId histogram_type, 604 void FormatReportHistogram(DatumId histogram_type, 632 void ReportHistogram(DatumId histogram_type,
|
/art/runtime/metrics/ |
D | reporter_test.cc | 68 void ReportHistogram([[maybe_unused]] DatumId histogram_type, in ReportHistogram() argument
|