Home
last modified time | relevance | path

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

/openbmc/phosphor-fan-presence/sensor-monitor/
H A Dthreshold_alarm_logger.cpp59 thresholdData{ variable
133 thresholdData.begin(), thresholdData.end(), in ThresholdAlarmLogger()
197 auto alarmProperties = thresholdData.find(interface); in checkProperties()
198 if (alarmProperties == thresholdData.end()) in checkProperties()
239 auto properties = thresholdData.find(interface); in checkThresholds()
240 if (properties == thresholdData.end()) in checkThresholds()
286 auto it = thresholdData.find(interface); in createEventLog()
287 if (it == thresholdData.end()) in createEventLog()
/openbmc/dbus-sensors/src/exit-air/
H A DExitAirTempSensor.hpp33 std::vector<thresholds::Threshold>&& thresholdData,
71 std::vector<thresholds::Threshold>&& thresholdData);
H A DExitAirTempSensor.cpp175 std::vector<thresholds::Threshold>&& thresholdData, in CFMSensor() argument
177 Sensor(escapeName(sensorName), std::move(thresholdData), in CFMSensor()
514 std::vector<thresholds::Threshold>&& thresholdData) : in ExitAirTempSensor()
515 Sensor(escapeName(sensorName), std::move(thresholdData), in ExitAirTempSensor()
512 ExitAirTempSensor(std::shared_ptr<sdbusplus::asio::connection> & conn,const std::string & sensorName,const std::string & sensorConfiguration,sdbusplus::asio::object_server & objectServer,std::vector<thresholds::Threshold> && thresholdData) ExitAirTempSensor() argument
/openbmc/phosphor-host-ipmid/dbus-sdr/
H A Dsensorcommands.cpp1378 IPMIThresholds thresholdData; in ipmiSenGetSensorThresholds() local
1381 thresholdData = getIPMIThresholds(sensorMap); in ipmiSenGetSensorThresholds()
1396 if (thresholdData.warningHigh) in ipmiSenGetSensorThresholds()
1400 upperNC = *thresholdData.warningHigh; in ipmiSenGetSensorThresholds()
1402 if (thresholdData.warningLow) in ipmiSenGetSensorThresholds()
1406 lowerNC = *thresholdData.warningLow; in ipmiSenGetSensorThresholds()
1409 if (thresholdData.criticalHigh) in ipmiSenGetSensorThresholds()
1413 upperCritical = *thresholdData.criticalHigh; in ipmiSenGetSensorThresholds()
1415 if (thresholdData.criticalLow) in ipmiSenGetSensorThresholds()
1419 lowerCritical = *thresholdData.criticalLow; in ipmiSenGetSensorThresholds()
[all …]
/openbmc/dbus-sensors/src/mcu/
H A DMCUTempSensor.hpp21 std::vector<thresholds::Threshold>&& thresholdData,
H A DMCUTempSensor.cpp69 std::vector<thresholds::Threshold>&& thresholdData, uint8_t busId, in MCUTempSensor() argument
71 Sensor(escapeName(sensorName), std::move(thresholdData), in MCUTempSensor()
/openbmc/dbus-sensors/src/ipmb/
H A DIpmbSensor.hpp104 std::vector<thresholds::Threshold>&& thresholdData,
H A DIpmbSensor.cpp71 std::vector<thresholds::Threshold>&& thresholdData, uint8_t deviceAddress, in IpmbSensor()
73 Sensor(escapeName(sensorName), std::move(thresholdData), in IpmbSensor()
68 IpmbSensor(std::shared_ptr<sdbusplus::asio::connection> & conn,boost::asio::io_context & io,const std::string & sensorName,const std::string & sensorConfiguration,sdbusplus::asio::object_server & objectServer,std::vector<thresholds::Threshold> && thresholdData,uint8_t deviceAddress,uint8_t hostSMbusIndex,const float pollRate,std::string & sensorTypeName) IpmbSensor() argument
/openbmc/dbus-sensors/src/
H A Dsensor.hpp71 std::vector<thresholds::Threshold>&& thresholdData, in Sensor()
80 minValue(min), thresholds(std::move(thresholdData)), in Sensor()