Home
last modified time | relevance | path

Searched refs:DBusSensor (Results 1 – 4 of 4) sorted by relevance

/openbmc/phosphor-power/phosphor-regulators/src/
H A Ddbus_sensor.hpp96 class DBusSensor class
100 DBusSensor() = delete;
101 DBusSensor(const DBusSensor&) = delete;
102 DBusSensor(DBusSensor&&) = delete;
103 DBusSensor& operator=(const DBusSensor&) = delete;
104 DBusSensor& operator=(DBusSensor&&) = delete;
105 virtual ~DBusSensor() = default;
122 explicit DBusSensor(sdbusplus::bus_t& bus, const std::string& name,
H A Ddbus_sensor.cpp69 DBusSensor::DBusSensor(sdbusplus::bus_t& bus, const std::string& name, in DBusSensor() function in phosphor::power::regulators::DBusSensor
113 void DBusSensor::disable() in disable()
125 void DBusSensor::setToErrorState() in setToErrorState()
137 void DBusSensor::setValue(double value) in setValue()
156 DBusSensor::getAssociations(const std::string& deviceInventoryPath, in getAssociations()
175 void DBusSensor::getTypeBasedProperties(std::string& objectPath, Unit& unit, in getTypeBasedProperties()
267 void DBusSensor::setValueToNaN() in setValueToNaN()
284 bool DBusSensor::shouldUpdateValue(double value) in shouldUpdateValue()
H A Ddbus_sensors.hpp97 std::map<std::string, std::unique_ptr<DBusSensor>> sensors{};
H A Ddbus_sensors.cpp95 auto sensor = std::make_unique<DBusSensor>( in setValue()