Home
last modified time | relevance | path

Searched refs:getMaxSetPointRequest (Results 1 – 7 of 7) sorted by relevance

/openbmc/phosphor-pid-control/test/
H A Dpid_fancontroller_unittest.cpp138 EXPECT_CALL(z, getMaxSetPointRequest()).WillOnce(Return(10.0)); in TEST()
144 EXPECT_CALL(z, getMaxSetPointRequest()).WillOnce(Return(5.0)); in TEST()
150 EXPECT_CALL(z, getMaxSetPointRequest()).WillOnce(Return(5.0)); in TEST()
H A Dzone_mock.hpp38 MOCK_CONST_METHOD0(getMaxSetPointRequest, double());
H A Dpid_zone_unittest.cpp258 EXPECT_EQ(5000, zone->getMaxSetPointRequest()); in TEST_F()
265 EXPECT_EQ(zone->getMinThermalSetPoint(), zone->getMaxSetPointRequest()); in TEST_F()
302 EXPECT_EQ(zone->getMinThermalSetPoint(), zone->getMaxSetPointRequest()); in TEST_F()
/openbmc/phosphor-pid-control/pid/
H A Dzone_interface.hpp87 virtual double getMaxSetPointRequest() const = 0;
H A Dfancontroller.cpp103 double maxRPM = _owner->getMaxSetPointRequest(); in setptProc()
H A Dzone.hpp82 double getMaxSetPointRequest(void) const override;
H A Dzone.cpp73 double DbusPidZone::getMaxSetPointRequest(void) const in getMaxSetPointRequest() function in pid_control::DbusPidZone