Home
last modified time | relevance | path

Searched refs:SensorSet (Results 1 – 10 of 10) sorted by relevance

/openbmc/phosphor-hwmon/
H A Dsensorset.hpp20 class SensorSet class
36 explicit SensorSet(const std::string& path);
37 ~SensorSet() = default;
38 SensorSet() = delete;
39 SensorSet(const SensorSet&) = delete;
40 SensorSet& operator=(const SensorSet&) = delete;
41 SensorSet(SensorSet&&) = default;
42 SensorSet& operator=(SensorSet&&) = default;
H A Dmainloop.hpp88 std::tuple<SensorSet::mapped_type, std::string, ObjectInfo>;
89 using SensorState = std::map<SensorSet::key_type, mapped_type>;
126 std::map<SensorSet::key_type, std::unique_ptr<sensor::Sensor>>
134 std::map<SensorSet::key_type, SensorSet::mapped_type> _rmSensors;
145 std::string getID(SensorSet::container_t::const_reference sensor);
153 getIdentifiers(SensorSet::container_t::const_reference sensor);
164 getObject(SensorSet::container_t::const_reference sensor);
H A Dsensor.hpp20 using TimedoutMap = std::map<SensorSet::key_type, std::future<int64_t>>;
62 explicit Sensor(const SensorSet::key_type& sensor,
184 SensorSet::key_type _sensor;
243 const SensorSet::key_type& sensorSetKey,
H A Denv.hpp58 inline std::string getEnv(const char* prefix, const SensorSet::key_type& sensor, in getEnv()
83 SensorSet::key_type sensor{type, id}; in getEnv()
98 const SensorSet::key_type& sensor) in getIndirectID()
H A Dsensorset.cpp30 SensorSet::SensorSet(const std::string& path) in SensorSet() function in SensorSet
H A Dutil.hpp29 inline bool isAverageEnvSet(const SensorSet::key_type& sensor) in isAverageEnvSet()
H A Daverage.hpp16 using averageKey = SensorSet::key_type;
H A Dmainloop.cpp136 std::string MainLoop::getID(SensorSet::container_t::const_reference sensor) in getID()
173 MainLoop::getIdentifiers(SensorSet::container_t::const_reference sensor) in getIdentifiers()
202 MainLoop::getObject(SensorSet::container_t::const_reference sensor) in getObject()
402 auto sensors = std::make_unique<SensorSet>(_hwmonRoot + '/' + _instance); in init()
657 SensorSet::container_t::value_type ssValueType = in addDroppedSensors()
H A Dsensor.cpp31 Sensor::Sensor(const SensorSet::key_type& sensor, in Sensor()
316 const SensorSet::key_type& sensorSetKey, in asyncRead()
H A Dtargets.hpp68 std::shared_ptr<T> addTarget(const SensorSet::key_type& sensor, in addTarget()