Home
last modified time | relevance | path

Searched refs:ThrottleCause (Results 1 – 2 of 2) sorted by relevance

/openbmc/bmcweb/redfish-core/include/generated/enums/
H A Dprocessor.hpp84 enum class ThrottleCause{ enum
170 NLOHMANN_JSON_SERIALIZE_ENUM(ThrottleCause, {
171 {ThrottleCause::Invalid, "Invalid"},
172 {ThrottleCause::PowerLimit, "PowerLimit"},
173 {ThrottleCause::ThermalLimit, "ThermalLimit"},
174 {ThrottleCause::ClockLimit, "ClockLimit"},
175 {ThrottleCause::ManagementDetectedFault, "ManagementDetectedFault"},
176 {ThrottleCause::Unknown, "Unknown"},
177 {ThrottleCause::OEM, "OEM"},
/openbmc/bmcweb/redfish-core/lib/
H A Dprocessor.hpp303 inline processor::ThrottleCause
309 return processor::ThrottleCause::ClockLimit; in dbusToRfThrottleCause()
314 return processor::ThrottleCause::ManagementDetectedFault; in dbusToRfThrottleCause()
319 return processor::ThrottleCause::PowerLimit; in dbusToRfThrottleCause()
324 return processor::ThrottleCause::ThermalLimit; in dbusToRfThrottleCause()
329 return processor::ThrottleCause::Unknown; in dbusToRfThrottleCause()
331 return processor::ThrottleCause::Invalid; in dbusToRfThrottleCause()
361 processor::ThrottleCause rfCause = dbusToRfThrottleCause(cause); in readThrottleProperties()
362 if (rfCause == processor::ThrottleCause::Invalid) in readThrottleProperties()