Home
last modified time | relevance | path

Searched refs:metricCount (Results 1 – 8 of 8) sorted by relevance

/openbmc/telemetry/tests/src/mocks/
H A Dmetric_mock.hpp16 ON_CALL(*this, metricCount).WillByDefault(InvokeWithoutArgs([this] { in MetricMock()
27 MOCK_METHOD(uint64_t, metricCount, (), (const, override));
/openbmc/telemetry/src/
H A Dreport.cpp37 metricCount(getMetricCount(metricsIn)), appendLimit(appendLimitIn), in Report()
149 uint64_t metricCount = 0; in getMetricCount() local
152 metricCount += metric->metricCount(); in getMetricCount()
154 return metricCount; in getMetricCount()
163 return metricCount; in deduceBufferSize()
297 metricCount = getMetricCount(metrics); in makeReportInterface()
H A Dreport_manager.cpp232 size_t metricCount = 0; in verifyMetricParams() local
237 metricCount += metricParamsVec.size(); in verifyMetricParams()
241 metricCount > ReportManager::maxNumberMetrics) in verifyMetricParams()
H A Dmetric.hpp26 uint64_t metricCount() const override;
H A Dmetric.cpp128 uint64_t Metric::metricCount() const in metricCount() function in Metric
H A Dreport.hpp121 uint64_t metricCount; member in Report
/openbmc/telemetry/src/interfaces/
H A Dmetric.hpp24 virtual uint64_t metricCount() const = 0;
/openbmc/telemetry/tests/src/
H A Dtest_report.cpp112 ON_CALL(*metricMocks[i], metricCount()) in getMetricsFromReadingParams()