Lines Matching refs:statistics
110 inline void RecordInHistogram(Statistics* statistics, uint32_t histogram_type, in RecordInHistogram() argument
112 if (statistics) { in RecordInHistogram()
113 statistics->recordInHistogram(histogram_type, value); in RecordInHistogram()
117 inline void RecordTimeToHistogram(Statistics* statistics, in RecordTimeToHistogram() argument
119 if (statistics) { in RecordTimeToHistogram()
120 statistics->reportTimeToHistogram(histogram_type, value); in RecordTimeToHistogram()
124 inline void RecordTick(Statistics* statistics, uint32_t ticker_type,
126 if (statistics) {
127 statistics->recordTick(ticker_type, count);
131 inline void SetTickerCount(Statistics* statistics, uint32_t ticker_type, in SetTickerCount() argument
133 if (statistics) { in SetTickerCount()
134 statistics->setTickerCount(ticker_type, count); in SetTickerCount()