Home
last modified time | relevance | path

Searched refs:counter_type (Results 1 – 6 of 6) sorted by relevance

/art/libartbase/base/metrics/
Dmetrics.h215 virtual void ReportCounter(DatumId counter_type, uint64_t value) = 0;
234 template <DatumId counter_type, typename T>
252 template <DatumId counter_type, typename T = uint64_t>
267 void Report(MetricsBackend* backend) const { backend->ReportCounter(counter_type, Value()); } in Report()
446 void ReportCounter(DatumId counter_type, uint64_t value) override;
Dmetrics_common.cc121 void StringBackend::ReportCounter(DatumId counter_type, uint64_t value) { in ReportCounter() argument
122 os_ << " " << DatumName(counter_type) << ": count = " << value << "\n"; in ReportCounter()
Dmetrics_test.h40 void ReportCounter([[maybe_unused]] DatumId counter_type, in ReportCounter() argument
Dmetrics_test.cc203 void ReportCounter(DatumId counter_type, uint64_t value) override { in TEST_F() argument
204 if (counter_type == DatumId::kClassVerificationTotalTime) { in TEST_F()
/art/runtime/metrics/
Dstatsd.cc217 void ReportCounter(DatumId counter_type, uint64_t value) override { in ReportCounter() argument
218 std::optional<int32_t> datum_id = EncodeDatumId(counter_type); in ReportCounter()
Dreporter_test.cc67 void ReportCounter(DatumId counter_type, uint64_t value) override { in ReportCounter() argument
68 current_report_->data.Put(counter_type, value); in ReportCounter()