Home
last modified time | relevance | path

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

/openthread-latest/src/ncp/
Dncp_base.cpp282 , mHostPowerState(SPINEL_HOST_POWER_STATE_ONLINE) in NcpBase()
425 mHostPowerState = SPINEL_HOST_POWER_STATE_ONLINE; in HandleReceive()
531 if (mHostPowerState != SPINEL_HOST_POWER_STATE_ONLINE) in HandleFrameRemovedFromNcpBuffer()
555 return (mHostPowerState != SPINEL_HOST_POWER_STATE_ONLINE && !mHostPowerStateInProgress); in ShouldWakeHost()
560 return (mHostPowerState == SPINEL_HOST_POWER_STATE_DEEP_SLEEP && !mHostPowerStateInProgress); in ShouldDeferHostSend()
2292 return mEncoder.WriteUint8(mHostPowerState); in HandlePropertyGet()
2317 mHostPowerState = static_cast<spinel_host_power_state_t>(powerState); in HandlePropertySet_SPINEL_PROP_HOST_POWER_STATE()
2322 mHostPowerState = SPINEL_HOST_POWER_STATE_DEEP_SLEEP; in HandlePropertySet_SPINEL_PROP_HOST_POWER_STATE()
2327 mHostPowerState = SPINEL_HOST_POWER_STATE_LOW_POWER; in HandlePropertySet_SPINEL_PROP_HOST_POWER_STATE()
2335 if (mHostPowerState != SPINEL_HOST_POWER_STATE_ONLINE) in HandlePropertySet_SPINEL_PROP_HOST_POWER_STATE()
Dncp_base.hpp753 spinel_host_power_state_t mHostPowerState; member in ot::Ncp::NcpBase