Home
last modified time | relevance | path

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

/openbmc/phosphor-pid-control/notimpl/
H A Dreadonly.hpp10 class ReadOnly : public WriteInterface
13 ReadOnly() : WriteInterface(0, 0) {} in ReadOnly()
18 class ReadOnlyNoExcept : public WriteInterface
21 ReadOnlyNoExcept() : WriteInterface(0, 0) {} in ReadOnlyNoExcept()
/openbmc/phosphor-pid-control/dbus/
H A Ddbuswrite.hpp29 class DbusWritePercent : public WriteInterface
32 static std::unique_ptr<WriteInterface> createDbusWrite(
38 WriteInterface(min, max), path(path), connectionName(connectionName) in DbusWritePercent()
50 class DbusWrite : public WriteInterface
53 static std::unique_ptr<WriteInterface> createDbusWrite(
59 WriteInterface(min, max), path(path), connectionName(connectionName) in DbusWrite()
H A Ddbuswrite.cpp40 std::unique_ptr<WriteInterface> DbusWritePercent::createDbusWrite( in createDbusWrite()
109 std::unique_ptr<WriteInterface> DbusWrite::createDbusWrite( in createDbusWrite()
/openbmc/phosphor-pid-control/sysfs/
H A Dsysfswrite.hpp16 class SysFsWritePercent : public WriteInterface
20 WriteInterface(min, max), _writePath(FixupPath(writePath)) in SysFsWritePercent()
29 class SysFsWrite : public WriteInterface
33 WriteInterface(min, max), _writePath(FixupPath(writePath)) in SysFsWrite()
/openbmc/phosphor-pid-control/
H A Dinterfaces.hpp61 class WriteInterface class
64 WriteInterface(int64_t min, int64_t max) : _min(min), _max(max) {} in WriteInterface() function in pid_control::WriteInterface
66 virtual ~WriteInterface() = default;
/openbmc/phosphor-pid-control/test/
H A Dwriteinterface_mock.hpp12 class WriteInterfaceMock : public WriteInterface
17 WriteInterfaceMock(int64_t min, int64_t max) : WriteInterface(min, max) {} in WriteInterfaceMock()
H A Dsensor_pluggable_unittest.cpp30 std::unique_ptr<WriteInterface> wi = in TEST()
48 std::unique_ptr<WriteInterface> wi = in TEST()
78 std::unique_ptr<WriteInterface> wi = in TEST()
/openbmc/phosphor-pid-control/sensors/
H A Dpluggable.hpp22 std::unique_ptr<WriteInterface> writer, in PluggableSensor()
36 std::unique_ptr<WriteInterface> _writer;
H A Dbuilder.cpp46 std::unique_ptr<WriteInterface> wi; in buildSensors()