Home
last modified time | relevance | path

Searched refs:noteMetricsReportSent (Results 1 – 4 of 4) sorted by relevance

/packages/modules/StatsD/statsd/tests/guardrail/
DStatsdStats_test.cpp132 stats.noteMetricsReportSent(key, 0); in TEST()
133 stats.noteMetricsReportSent(key, 0); in TEST()
134 stats.noteMetricsReportSent(key, 0); in TEST()
401 stats.noteMetricsReportSent(key, 0, timestamps[i]); in TEST()
411 stats.noteMetricsReportSent(key, 0, 10000); in TEST()
/packages/modules/StatsD/statsd/src/guardrail/
DStatsdStats.h235 void noteMetricsReportSent(const ConfigKey& key, const size_t num_bytes);
641 void noteMetricsReportSent(const ConfigKey& key, const size_t num_bytes, int32_t timeSec);
DStatsdStats.cpp292 void StatsdStats::noteMetricsReportSent(const ConfigKey& key, const size_t num_bytes) { in noteMetricsReportSent() function in android::os::statsd::StatsdStats
293 noteMetricsReportSent(key, num_bytes, getWallClockSec()); in noteMetricsReportSent()
296 void StatsdStats::noteMetricsReportSent(const ConfigKey& key, const size_t num_bytes, in noteMetricsReportSent() function in android::os::statsd::StatsdStats
/packages/modules/StatsD/statsd/src/
DStatsLogProcessor.cpp652 StatsdStats::getInstance().noteMetricsReportSent(key, proto.size()); in onDumpReport()