Searched refs:counter_type (Results 1 – 6 of 6) sorted by relevance
/art/libartbase/base/metrics/ |
D | metrics.h | 215 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;
|
D | metrics_common.cc | 121 void StringBackend::ReportCounter(DatumId counter_type, uint64_t value) { in ReportCounter() argument 122 os_ << " " << DatumName(counter_type) << ": count = " << value << "\n"; in ReportCounter()
|
D | metrics_test.h | 40 void ReportCounter([[maybe_unused]] DatumId counter_type, in ReportCounter() argument
|
D | metrics_test.cc | 203 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/ |
D | statsd.cc | 217 void ReportCounter(DatumId counter_type, uint64_t value) override { in ReportCounter() argument 218 std::optional<int32_t> datum_id = EncodeDatumId(counter_type); in ReportCounter()
|
D | reporter_test.cc | 67 void ReportCounter(DatumId counter_type, uint64_t value) override { in ReportCounter() argument 68 current_report_->data.Put(counter_type, value); in ReportCounter()
|