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.cpp49 EXPECT_CALL(z, addSetPoint(40.0, "foo")).Times(2); in TEST()
50 EXPECT_CALL(z, addSetPoint(60.0, "foo")).Times(1); in TEST()
85 EXPECT_CALL(z, addSetPoint(40.0, "foo")).Times(1); in TEST()
86 EXPECT_CALL(z, addSetPoint(60.0, "foo")).Times(2); in TEST()
H A Dpid_thermalcontroller_unittest.cpp111 EXPECT_CALL(z, addSetPoint(value, "therm1")); in TEST()
229 EXPECT_CALL(z, addSetPoint(_, "therm1")).Times(3); in TEST()
263 EXPECT_CALL(z, addSetPoint(_, "therm1")).Times(3); in TEST()
H A Dzone_mock.hpp37 MOCK_METHOD2(addSetPoint, void(double, const std::string&));
H A Dpid_zone_unittest.cpp265 zone->addSetPoint(v, sensorname); in TEST_F()
307 zone->addSetPoint(v, sensorname); in TEST_F()
/openbmc/phosphor-pid-control/pid/
H A Dzone_interface.hpp76 virtual void addSetPoint(double setpoint, const std::string& name) = 0;
H A Dstepwisecontroller.cpp111 _owner->addSetPoint(value, _id); in outputProc()
H A Dthermalcontroller.cpp195 _owner->addSetPoint(value, _id); in outputProc()
H A Dzone.hpp90 void addSetPoint(double setPoint, const std::string& name) override;
H A Dzone.cpp129 void DbusPidZone::addSetPoint(double setPoint, const std::string& name) in addSetPoint() function in pid_control::DbusPidZone