Home
last modified time | relevance | path

Searched refs:addSetPoint (Results 1 – 9 of 9) sorted by relevance

/openbmc/phosphor-pid-control/test/
H A Dpid_stepwisecontroller_unittest.cpp47 EXPECT_CALL(z, addSetPoint(40.0, "foo")).Times(2); in TEST()
48 EXPECT_CALL(z, addSetPoint(60.0, "foo")).Times(1); in TEST()
83 EXPECT_CALL(z, addSetPoint(40.0, "foo")).Times(1); in TEST()
84 EXPECT_CALL(z, addSetPoint(60.0, "foo")).Times(2); in TEST()
H A Dpid_thermalcontroller_unittest.cpp109 EXPECT_CALL(z, addSetPoint(value, "therm1")); in TEST()
227 EXPECT_CALL(z, addSetPoint(_, "therm1")).Times(3); in TEST()
261 EXPECT_CALL(z, addSetPoint(_, "therm1")).Times(3); in TEST()
H A Dzone_mock.hpp31 MOCK_METHOD2(addSetPoint, void(double, const std::string&));
H A Dpid_zone_unittest.cpp253 zone->addSetPoint(v, sensorname); in TEST_F()
295 zone->addSetPoint(v, sensorname); in TEST_F()
/openbmc/phosphor-pid-control/pid/
H A Dzone_interface.hpp70 virtual void addSetPoint(double setpoint, const std::string& name) = 0;
H A Dstepwisecontroller.cpp111 _owner->addSetPoint(value, _id); in outputProc()
H A Dthermalcontroller.cpp201 _owner->addSetPoint(value, _id); in outputProc()
H A Dzone.hpp81 void addSetPoint(double setPoint, const std::string& name) override;
H A Dzone.cpp130 void DbusPidZone::addSetPoint(double setPoint, const std::string& name) in addSetPoint() function in pid_control::DbusPidZone