Searched refs:minInterval (Results 1 – 10 of 10) sorted by relevance
| /openbmc/phosphor-watchdog/src/ |
| H A D | watchdog.hpp | 72 uint64_t minInterval = DEFAULT_MIN_INTERVAL_MS, argument 76 minInterval(minInterval), 178 uint64_t minInterval; member in phosphor::watchdog::Watchdog
|
| H A D | mainapp.cpp | 138 uint64_t minInterval = phosphor::watchdog::DEFAULT_MIN_INTERVAL_MS; in main() local 139 app.add_option("-m,--min_interval", minInterval, in main() 232 std::move(maybeFallback), minInterval, in main()
|
| H A D | watchdog.cpp | 86 value = std::max(value, minInterval); in timeRemaining() 105 return WatchdogInherits::interval(std::max(value, minInterval)); in interval()
|
| /openbmc/bmcweb/redfish-core/lib/ |
| H A D | telemetry_service.hpp | 75 const uint64_t* minInterval = nullptr; in handleTelemetryServiceGet() local 79 "MinInterval", minInterval); in handleTelemetryServiceGet() 92 if (minInterval != nullptr) in handleTelemetryServiceGet() 96 static_cast<time_t>(*minInterval))); in handleTelemetryServiceGet()
|
| /openbmc/telemetry/tests/src/ |
| H A D | test_report.cpp | 473 uint64_t newValue = ReportManager::minInterval.count() * 42; in TEST_F() 485 uint64_t newValue = ReportManager::minInterval.count() - 1; in TEST_F() 503 uint64_t newValue = ReportManager::minInterval.count(); in TEST_F() 823 .interval(ReportManager::minInterval))); 913 .interval(ReportManager::minInterval * 10), 945 DbusEnvironment::sleepFor(ReportManager::minInterval + 1ms); in TEST_P() 959 .interval(ReportManager::minInterval)); in SetUp() 966 DbusEnvironment::sleepFor(ReportManager::minInterval + 1ms); in TEST_F() 976 DbusEnvironment::sleepFor(ReportManager::minInterval + 1ms); in TEST_F() 1282 .interval(ReportManager::minInterval)); in TEST_F() [all …]
|
| H A D | test_report_manager.cpp | 108 TEST_F(TestReportManager, minInterval) in TEST_F() argument 112 Eq(ReportManager::minInterval.count())); in TEST_F() 342 reportParams.interval(ReportManager::minInterval - 1ms); in TEST_F()
|
| /openbmc/phosphor-watchdog/test/ |
| H A D | watchdog.cpp | 549 auto minInterval = defaultInterval + Quantum(30); in TEST_F() local 550 auto minIntervalMs = milliseconds(minInterval).count(); in TEST_F() 572 EXPECT_TRUE((remaining >= minInterval - Quantum(1)) && in TEST_F() 573 (remaining <= minInterval)); in TEST_F()
|
| /openbmc/telemetry/src/ |
| H A D | report_manager.hpp | 69 static constexpr Milliseconds minInterval{TELEMETRY_MIN_INTERVAL}; member in ReportManager
|
| H A D | report_manager.cpp | 46 [](const auto&) -> uint64_t { return minInterval.count(); }); in ReportManager() 133 if ((reportingType == ReportingType::periodic && interval < minInterval) || in verifyAddReport()
|
| H A D | report.cpp | 642 if (interval != Milliseconds{0} && interval < ReportManager::minInterval) in verify()
|