Home
last modified time | relevance | path

Searched refs:endRail (Results 1 – 10 of 10) sorted by relevance

/openbmc/phosphor-power/phosphor-regulators/test/
H A Dmock_sensors.hpp47 MOCK_METHOD(void, endRail, (bool errorOccurred), (override));
H A Dsensor_monitoring_tests.cpp162 EXPECT_CALL(sensors, endRail(true)).Times(10); in TEST()
241 EXPECT_CALL(sensors, endRail(false)).Times(1); in TEST()
287 EXPECT_CALL(sensors, endRail(true)).Times(executeCount); in TEST()
H A Drail_tests.cpp146 EXPECT_CALL(sensors, endRail(true)).Times(10); in TEST()
332 EXPECT_CALL(sensors, endRail).Times(0); in TEST()
383 EXPECT_CALL(sensors, endRail(false)).Times(1); in TEST()
H A Dchassis_tests.cpp222 EXPECT_CALL(sensors, endRail).Times(10); in TEST_F()
558 EXPECT_CALL(sensors, endRail).Times(0); in TEST_F()
583 EXPECT_CALL(sensors, endRail(false)).Times(2); in TEST_F()
H A Ddevice_tests.cpp318 EXPECT_CALL(sensors, endRail).Times(10); in TEST_F()
902 EXPECT_CALL(sensors, endRail).Times(0); in TEST_F()
957 EXPECT_CALL(sensors, endRail).Times(0); in TEST_F()
977 EXPECT_CALL(sensors, endRail(false)).Times(2); in TEST_F()
H A Dsystem_tests.cpp176 EXPECT_CALL(sensors, endRail).Times(10); in TEST()
462 EXPECT_CALL(sensors, endRail(false)).Times(2); in TEST()
/openbmc/phosphor-power/phosphor-regulators/src/
H A Dsensor_monitoring.cpp86 sensors.endRail(errorOccurred); in execute()
H A Dsensors.hpp194 virtual void endRail(bool errorOccurred) = 0;
H A Ddbus_sensors.hpp64 virtual void endRail(bool errorOccurred) override;
H A Ddbus_sensors.cpp51 void DBusSensors::endRail(bool errorOccurred) in endRail() function in phosphor::power::regulators::DBusSensors