Home
last modified time | relevance | path

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

/openthread-3.5.0/src/ncp/
Dncp_base.cpp218 , mHostPowerState(SPINEL_HOST_POWER_STATE_ONLINE) in NcpBase()
341 mHostPowerState = SPINEL_HOST_POWER_STATE_ONLINE; in HandleReceive()
435 if (mHostPowerState != SPINEL_HOST_POWER_STATE_ONLINE) in HandleFrameRemovedFromNcpBuffer()
459 return (mHostPowerState != SPINEL_HOST_POWER_STATE_ONLINE && !mHostPowerStateInProgress); in ShouldWakeHost()
464 return (mHostPowerState == SPINEL_HOST_POWER_STATE_DEEP_SLEEP && !mHostPowerStateInProgress); in ShouldDeferHostSend()
2087 return mEncoder.WriteUint8(mHostPowerState); in HandlePropertyGet()
2112 mHostPowerState = static_cast<spinel_host_power_state_t>(powerState); in HandlePropertySet_SPINEL_PROP_HOST_POWER_STATE()
2117 mHostPowerState = SPINEL_HOST_POWER_STATE_DEEP_SLEEP; in HandlePropertySet_SPINEL_PROP_HOST_POWER_STATE()
2122 mHostPowerState = SPINEL_HOST_POWER_STATE_LOW_POWER; in HandlePropertySet_SPINEL_PROP_HOST_POWER_STATE()
2130 if (mHostPowerState != SPINEL_HOST_POWER_STATE_ONLINE) in HandlePropertySet_SPINEL_PROP_HOST_POWER_STATE()
Dncp_base.hpp559 spinel_host_power_state_t mHostPowerState; member in ot::Ncp::NcpBase