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.hpp27 std::vector<thresholds::Threshold>&& thresholdData,
65 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()
512 std::vector<thresholds::Threshold>&& thresholdData) : in ExitAirTempSensor() argument
513 Sensor(escapeName(sensorName), std::move(thresholdData), in ExitAirTempSensor()
/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.hpp18 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.hpp96 std::vector<thresholds::Threshold>&& thresholdData,
H A DIpmbSensor.cpp68 std::vector<thresholds::Threshold>&& thresholdData, uint8_t deviceAddress, in IpmbSensor() argument
70 Sensor(escapeName(sensorName), std::move(thresholdData), in IpmbSensor()
/openbmc/dbus-sensors/src/
H A Dsensor.hpp62 std::vector<thresholds::Threshold>&& thresholdData, in Sensor()
71 minValue(min), thresholds(std::move(thresholdData)), in Sensor()