Home
last modified time | relevance | path

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

/openbmc/phosphor-fan-presence/sensor-monitor/
H A Dthreshold_alarm_logger.cpp56 thresholdData{ variable
129 thresholdData.begin(), thresholdData.end(), in ThresholdAlarmLogger()
193 auto alarmProperties = thresholdData.find(interface); in checkProperties()
194 if (alarmProperties == thresholdData.end()) in checkProperties()
235 auto properties = thresholdData.find(interface); in checkThresholds()
236 if (properties == thresholdData.end()) in checkThresholds()
282 auto it = thresholdData.find(interface); in createEventLog()
283 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.cpp169 std::vector<thresholds::Threshold>&& thresholdData, in CFMSensor() argument
171 Sensor(escapeName(sensorName), std::move(thresholdData), in CFMSensor()
496 std::vector<thresholds::Threshold>&& thresholdData) : in ExitAirTempSensor() argument
497 Sensor(escapeName(sensorName), std::move(thresholdData), in ExitAirTempSensor()
/openbmc/dbus-sensors/src/nvidia-gpu/
H A DNvidiaGpuVoltageSensor.cpp45 std::vector<thresholds::Threshold>&& thresholdData) : in NvidiaGpuVoltageSensor() argument
46 Sensor(escapeName(name), std::move(thresholdData), sensorConfiguration, in NvidiaGpuVoltageSensor()
H A DNvidiaGpuEnergySensor.cpp45 std::vector<thresholds::Threshold>&& thresholdData) : in NvidiaGpuEnergySensor() argument
46 Sensor(escapeName(name), std::move(thresholdData), sensorConfiguration, in NvidiaGpuEnergySensor()
H A DNvidiaGpuSensor.cpp43 std::vector<thresholds::Threshold>&& thresholdData) : in NvidiaGpuTempSensor() argument
44 Sensor(escapeName(name), std::move(thresholdData), sensorConfiguration, in NvidiaGpuTempSensor()
H A DNvidiaGpuPowerSensor.cpp45 std::vector<thresholds::Threshold>&& thresholdData) : in NvidiaGpuPowerSensor() argument
46 Sensor(escapeName(name), std::move(thresholdData), sensorConfiguration, in NvidiaGpuPowerSensor()
H A DNvidiaGpuEnergySensor.hpp34 std::vector<thresholds::Threshold>&& thresholdData);
H A DNvidiaGpuVoltageSensor.hpp36 std::vector<thresholds::Threshold>&& thresholdData);
H A DNvidiaGpuPowerSensor.hpp36 std::vector<thresholds::Threshold>&& thresholdData);
H A DNvidiaGpuSensor.hpp37 std::vector<thresholds::Threshold>&& thresholdData);
/openbmc/dbus-sensors/src/mcu/
H A DMCUTempSensor.hpp21 std::vector<thresholds::Threshold>&& thresholdData,
H A DMCUTempSensor.cpp67 std::vector<thresholds::Threshold>&& thresholdData, uint8_t busId, in MCUTempSensor() argument
69 Sensor(escapeName(sensorName), std::move(thresholdData), in MCUTempSensor()
/openbmc/phosphor-host-ipmid/dbus-sdr/
H A Dsensorcommands.cpp1400 IPMIThresholds thresholdData; in ipmiSenGetSensorThresholds() local
1403 thresholdData = getIPMIThresholds(sensorMap); in ipmiSenGetSensorThresholds()
1418 if (thresholdData.warningHigh) in ipmiSenGetSensorThresholds()
1422 upperNC = *thresholdData.warningHigh; in ipmiSenGetSensorThresholds()
1424 if (thresholdData.warningLow) in ipmiSenGetSensorThresholds()
1428 lowerNC = *thresholdData.warningLow; in ipmiSenGetSensorThresholds()
1431 if (thresholdData.criticalHigh) in ipmiSenGetSensorThresholds()
1435 upperCritical = *thresholdData.criticalHigh; in ipmiSenGetSensorThresholds()
1437 if (thresholdData.criticalLow) in ipmiSenGetSensorThresholds()
1441 lowerCritical = *thresholdData.criticalLow; in ipmiSenGetSensorThresholds()
[all …]
/openbmc/dbus-sensors/src/smbpbi/
H A DSmbpbiSensor.hpp40 std::vector<thresholds::Threshold>&& thresholdData, uint8_t busId,
H A DSmbpbiSensor.cpp55 std::vector<thresholds::Threshold>&& thresholdData, uint8_t busId, in SmbpbiSensor() argument
59 Sensor(escapeName(sensorName), std::move(thresholdData), in SmbpbiSensor()
/openbmc/dbus-sensors/src/ipmb/
H A DIpmbSensor.hpp104 std::vector<thresholds::Threshold>&& thresholdData,
H A DIpmbSensor.cpp69 std::vector<thresholds::Threshold>&& thresholdData, uint8_t deviceAddress, in IpmbSensor() argument
71 Sensor(escapeName(sensorName), std::move(thresholdData), in IpmbSensor()
/openbmc/dbus-sensors/src/
H A Dsensor.hpp71 std::vector<thresholds::Threshold>&& thresholdData, in Sensor()
80 minValue(min), thresholds(std::move(thresholdData)), in Sensor()