Home
last modified time | relevance | path

Searched refs:ledState (Results 1 – 7 of 7) sorted by relevance

/openbmc/bmcweb/redfish-core/lib/
H A Dled.hpp110 const std::string& ledState) in setIndicatorLedState() argument
116 if (ledState == "Lit") in setIndicatorLedState()
120 else if (ledState == "Blinking") in setIndicatorLedState()
124 else if (ledState != "Off") in setIndicatorLedState()
126 messages::propertyValueNotInList(asyncResp->res, ledState, in setIndicatorLedState()
222 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, const bool ledState) in setSystemLocationIndicatorActive() argument
229 "xyz.openbmc_project.Led.Group", "Asserted", ledState, in setSystemLocationIndicatorActive()
230 [asyncResp, ledState](const boost::system::error_code& ec) { in setSystemLocationIndicatorActive()
241 "xyz.openbmc_project.Led.Group", "Asserted", ledState); in setSystemLocationIndicatorActive()
388 bool ledState, const boost::system::error_code& ec, in setLedState() argument
[all …]
H A Dsensors.hpp1390 inventoryItem->ledState = sensor_utils::LedState::ON; in getInventoryLedData()
1394 inventoryItem->ledState = sensor_utils::LedState::BLINK; in getInventoryLedData()
1398 inventoryItem->ledState = sensor_utils::LedState::OFF; in getInventoryLedData()
1402 inventoryItem->ledState = in getInventoryLedData()
/openbmc/webui-vue/src/store/modules/HardwareStatus/
H A DSystemStore.js47 async changeIdentifyLedState({ commit }, ledState) { argument
50 LocationIndicatorActive: ledState,
53 if (ledState) {
66 if (ledState) {
/openbmc/dbus-sensors/src/fan/
H A DTachSensor.cpp210 if (led && ledState != curLed) in checkThresholds()
212 ledState = curLed; in checkThresholds()
H A DTachSensor.hpp94 bool ledState = false; member in TachSensor
/openbmc/bmcweb/redfish-core/include/utils/
H A Dsensor_utils.hpp153 LedState ledState = LedState::UNKNOWN; member in redfish::sensor_utils::InventoryItem
444 switch (inventoryItem->ledState) in setLedState()
/openbmc/intel-ipmi-oem/src/
H A Doemcommands.cpp2847 uint64_t ledState = 0; in ipmiOEMSetFaultIndication() local
2851 ledState = (uint64_t)(ledState << 8); in ipmiOEMSetFaultIndication()
2852 ledState = (uint64_t)(ledState | (uint64_t)ledStateData[i]); in ipmiOEMSetFaultIndication()
2854 std::bitset<size> ledStateBits(ledState); in ipmiOEMSetFaultIndication()