Home
last modified time | relevance | path

Searched refs:BMCState (Results 1 – 12 of 12) sorted by relevance

/openbmc/phosphor-host-ipmid/
H A Dglobalhandler.cpp8 using BMCState = sdbusplus::server::xyz::openbmc_project::state::BMC; typedef
20 ctx, BMCState::interface, BMCState::namespace_path::value, in ipmiGlobalReset()
21 BMCState::namespace_path::bmc, bmcStateObj); in ipmiGlobalReset()
25 ec = ipmi::getService(ctx, BMCState::interface, bmcStateObj.first, in ipmiGlobalReset()
30 ctx, service, bmcStateObj.first, BMCState::interface, in ipmiGlobalReset()
31 BMCState::property_names::requested_bmc_transition, in ipmiGlobalReset()
32 convertForMessage(BMCState::Transition::Reboot)); in ipmiGlobalReset()
H A Dapphandler.cpp65 using BMCState = sdbusplus::server::xyz::openbmc_project::state::BMC; typedef
187 ipmi::getDbusObject(bus, BMCState::interface); in getCurrentBmcState()
189 bus, bmcObject.second, bmcObject.first, BMCState::interface, in getCurrentBmcState()
190 BMCState::property_names::current_bmc_state); in getCurrentBmcState()
193 BMCState::convertBMCStateFromString( in getCurrentBmcState()
194 std::get<std::string>(variant)) == BMCState::BMCState::Ready; in getCurrentBmcState()
/openbmc/phosphor-state-manager/
H A Dbmc_state_manager_main.cpp7 using BMCState = sdbusplus::server::xyz::openbmc_project::state::BMC; typedef
15 const auto* BMCName = BMCState::namespace_path::bmc; in main()
16 const auto* objPath = BMCState::namespace_path::value; in main()
25 bus.request_name(BMCState::interface); in main()
H A Dbmc_state_manager.cpp49 this->currentBMCState(BMCState::Quiesced); in bmcIsQuiesced()
130 this->currentBMCState(BMCState::Ready); in discoverInitialState()
135 this->currentBMCState(BMCState::NotReady); in discoverInitialState()
149 this->currentBMCState(BMCState::NotReady); in executeTransition()
183 this->currentBMCState(BMCState::NotReady); in executeTransition()
220 this->currentBMCState(BMCState::Ready); in bmcStateChange()
248 BMC::BMCState BMC::currentBMCState(BMCState value) in currentBMCState()
H A Dbmc_state_manager.hpp83 BMCState currentBMCState(BMCState value) override;
H A Ddiscover_system_state.cpp38 using BMCState = sdbusplus::client::xyz::openbmc_project::state::BMC<>; typedef
93 bus, bmcPath.str, BMCState::interface, in main()
94 BMCState::property_names::last_reboot_cause)); in main()
H A Dutils.cpp251 if (sdbusplus::message::convert_from_string<BMC::BMCState>(bmcState) != in isBmcReady()
252 BMC::BMCState::Ready) in isBmcReady()
/openbmc/phosphor-host-ipmid/oem/example/
H A Dapphandler.cpp37 using BMCState = sdbusplus::server::xyz::openbmc_project::state::BMC; typedef
134 ipmi::getDbusObject(ctx, BMCState::interface, bmcObject); in getCurrentBmcStateWithFallback()
141 ctx, bmcObject.second, bmcObject.first, BMCState::interface, in getCurrentBmcStateWithFallback()
142 BMCState::property_names::current_bmc_state, bmcState); in getCurrentBmcStateWithFallback()
147 return BMCState::convertBMCStateFromString(bmcState) == in getCurrentBmcStateWithFallback()
148 BMCState::BMCState::Ready; in getCurrentBmcStateWithFallback()
/openbmc/phosphor-buttons/src/
H A Dhost_then_chassis_poweroff.cpp212 BMC::BMCState bmcState; in isBmcReady()
232 return bmcState == BMC::BMCState::Ready; in isBmcReady()
/openbmc/phosphor-fan-presence/docs/control/fanctl/
H A DREADME.md104 CurrentBMCState : xyz.openbmc_project.State.BMC.BMCState.Ready
/openbmc/docs/development/
H A Ddev-environment.md161 CurrentBMCState : xyz.openbmc_project.State.BMC.BMCState.Ready
/openbmc/phosphor-logging/extensions/openpower-pels/
H A Ddata_interface.cpp168 if (BMC::convertBMCStateFromString(state) == BMC::BMCState::Ready) in DataInterface()