Home
last modified time | relevance | path

Searched refs:HostPowerState (Results 1 – 5 of 5) sorted by relevance

/openbmc/phosphor-fan-presence/
H A Dpower_state.hpp232 class HostPowerState : public PowerState class
235 virtual ~HostPowerState() = default;
236 HostPowerState(const HostPowerState&) = delete;
237 HostPowerState& operator=(const HostPowerState&) = delete;
238 HostPowerState(HostPowerState&&) = delete;
239 HostPowerState& operator=(HostPowerState&&) = delete;
241 HostPowerState() : in HostPowerState() function in phosphor::fan::HostPowerState
258 HostPowerState(sdbusplus::bus_t& bus, StateChangeFunc func) : in HostPowerState() function in phosphor::fan::HostPowerState
/openbmc/fb-ipmi-oem/include/
H A Dbiccommands.hpp27 enum class HostPowerState : uint8_t enum
/openbmc/phosphor-fan-presence/sensor-monitor/
H A Dmain.cpp33 std::make_shared<phosphor::fan::HostPowerState>(); in main()
/openbmc/fb-ipmi-oem/src/
H A Dbiccommands.cpp255 switch (static_cast<HostPowerState>(status)) in ipmiOemSetHostPowerState()
257 case HostPowerState::HOST_POWER_ON: in ipmiOemSetHostPowerState()
260 case HostPowerState::HOST_POWER_OFF: in ipmiOemSetHostPowerState()
/openbmc/phosphor-fan-presence/monitor/
H A Dsystem.cpp55 _powerState(std::make_unique<HostPowerState>( in System()