Home
last modified time | relevance | path

Searched refs:aEnable (Results 1 – 25 of 53) sorted by relevance

123

/openthread-latest/examples/platforms/simulation/
Ddiag.c162 otError otPlatDiagRadioRawPowerSettingEnable(otInstance *aInstance, bool aEnable) in otPlatDiagRadioRawPowerSettingEnable() argument
165 OT_UNUSED_VARIABLE(aEnable); in otPlatDiagRadioRawPowerSettingEnable()
170 otError otPlatDiagRadioTransmitCarrier(otInstance *aInstance, bool aEnable) in otPlatDiagRadioTransmitCarrier() argument
173 OT_UNUSED_VARIABLE(aEnable); in otPlatDiagRadioTransmitCarrier()
178 otError otPlatDiagRadioTransmitStream(otInstance *aInstance, bool aEnable) in otPlatDiagRadioTransmitStream() argument
181 OT_UNUSED_VARIABLE(aEnable); in otPlatDiagRadioTransmitStream()
Ddso_transport.c35 void otPlatDsoEnableListening(otInstance *aInstance, bool aEnable) in otPlatDsoEnableListening() argument
38 OT_UNUSED_VARIABLE(aEnable); in otPlatDsoEnableListening()
/openthread-latest/src/core/api/
Dtrel_api.cpp44 void otTrelSetEnabled(otInstance *aInstance, bool aEnable) in otTrelSetEnabled() argument
46 AsCoreType(aInstance).Get<Trel::Interface>().SetEnabled(aEnable); in otTrelSetEnabled()
66 void otTrelSetFilterEnabled(otInstance *aInstance, bool aEnable) in otTrelSetFilterEnabled() argument
68 AsCoreType(aInstance).Get<Trel::Interface>().SetFilterEnabled(aEnable); in otTrelSetFilterEnabled()
Dlink_raw_api.cpp63 otError otLinkRawSetPromiscuous(otInstance *aInstance, bool aEnable) in otLinkRawSetPromiscuous() argument
69 instance.Get<Radio>().SetPromiscuous(aEnable); in otLinkRawSetPromiscuous()
112 otError otLinkRawSrcMatchEnable(otInstance *aInstance, bool aEnable) in otLinkRawSrcMatchEnable() argument
119 instance.Get<Radio>().EnableSrcMatch(aEnable); in otLinkRawSrcMatchEnable()
Dlink_metrics_api.cpp105 void otLinkMetricsManagerSetEnabled(otInstance *aInstance, bool aEnable) in otLinkMetricsManagerSetEnabled() argument
107 AsCoreType(aInstance).Get<Utils::LinkMetricsManager>().SetEnabled(aEnable); in otLinkMetricsManagerSetEnabled()
/openthread-latest/include/openthread/platform/
Ddiag.h240 otError otPlatDiagRadioRawPowerSettingEnable(otInstance *aInstance, bool aEnable);
252 otError otPlatDiagRadioTransmitCarrier(otInstance *aInstance, bool aEnable);
264 otError otPlatDiagRadioTransmitStream(otInstance *aInstance, bool aEnable);
Dmdns_socket.h85 otError otPlatMdnsSetListeningEnabled(otInstance *aInstance, bool aEnable, uint32_t aInfraIfIndex);
Dradio.h663 void otPlatRadioSetPromiscuous(otInstance *aInstance, bool aEnable);
698 void otPlatRadioSetRxOnWhenIdle(otInstance *aInstance, bool aEnable);
1036 void otPlatRadioEnableSrcMatch(otInstance *aInstance, bool aEnable);
Ddso_transport.h76 void otPlatDsoEnableListening(otInstance *aInstance, bool aEnable);
/openthread-latest/include/openthread/
Dtrel.h89 void otTrelSetEnabled(otInstance *aInstance, bool aEnable);
140 void otTrelSetFilterEnabled(otInstance *aInstance, bool aEnable);
Dlink_raw.h105 otError otLinkRawSetPromiscuous(otInstance *aInstance, bool aEnable);
262 otError otLinkRawSrcMatchEnable(otInstance *aInstance, bool aEnable);
/openthread-latest/src/core/radio/
Dradio.hpp446 void SetPromiscuous(bool aEnable);
453 void SetRxOnWhenIdle(bool aEnable);
641 void EnableSrcMatch(bool aEnable);
923 inline void Radio::SetPromiscuous(bool aEnable) { otPlatRadioSetPromiscuous(GetInstancePtr(), aEnab… in SetPromiscuous() argument
925 inline void Radio::SetRxOnWhenIdle(bool aEnable) { otPlatRadioSetRxOnWhenIdle(GetInstancePtr(), aEn… in SetRxOnWhenIdle() argument
1012 inline void Radio::EnableSrcMatch(bool aEnable) { otPlatRadioEnableSrcMatch(GetInstancePtr(), aEnab… in EnableSrcMatch() argument
Dtrel_interface.hpp168 void SetEnabled(bool aEnable);
230 void SetFilterEnabled(bool aEnable) { mFiltered = aEnable; } in SetFilterEnabled() argument
/openthread-latest/src/core/mac/
Dsub_mac_wed.cpp51 void SubMac::UpdateWakeupListening(bool aEnable, uint32_t aInterval, uint32_t aDuration, uint8_t aC… in UpdateWakeupListening() argument
60 if (aEnable) in UpdateWakeupListening()
Dmac_links.hpp514 … void UpdateWakeupListening(bool aEnable, uint32_t aInterval, uint32_t aDuration, uint8_t aChannel) in UpdateWakeupListening() argument
516 OT_UNUSED_VARIABLE(aEnable); in UpdateWakeupListening()
521 mSubMac.UpdateWakeupListening(aEnable, aInterval, aDuration, aChannel); in UpdateWakeupListening()
/openthread-latest/src/posix/platform/
Dradio.cpp265 void otPlatRadioSetPromiscuous(otInstance *aInstance, bool aEnable) in otPlatRadioSetPromiscuous() argument
268 SuccessOrDie(GetRadioSpinel().SetPromiscuous(aEnable)); in otPlatRadioSetPromiscuous()
393 void otPlatRadioEnableSrcMatch(otInstance *aInstance, bool aEnable) in otPlatRadioEnableSrcMatch() argument
396 SuccessOrDie(GetRadioSpinel().EnableSrcMatch(aEnable)); in otPlatRadioEnableSrcMatch()
811 otError otPlatDiagRadioRawPowerSettingEnable(otInstance *aInstance, bool aEnable) in otPlatDiagRadioRawPowerSettingEnable() argument
818 snprintf(cmd, sizeof(cmd), "rawpowersetting %s", aEnable ? "enable" : "disable"); in otPlatDiagRadioRawPowerSettingEnable()
825 otError otPlatDiagRadioTransmitCarrier(otInstance *aInstance, bool aEnable) in otPlatDiagRadioTransmitCarrier() argument
832 snprintf(cmd, sizeof(cmd), "cw %s", aEnable ? "start" : "stop"); in otPlatDiagRadioTransmitCarrier()
839 otError otPlatDiagRadioTransmitStream(otInstance *aInstance, bool aEnable) in otPlatDiagRadioTransmitStream() argument
845 snprintf(cmd, sizeof(cmd), "stream %s", aEnable ? "start" : "stop"); in otPlatDiagRadioTransmitStream()
Dmdns_socket.cpp48 extern "C" otError otPlatMdnsSetListeningEnabled(otInstance *aInstance, bool aEnable, uint32_t aInf… in otPlatMdnsSetListeningEnabled() argument
50 return ot::Posix::MdnsSocket::Get().SetListeningEnabled(aInstance, aEnable, aInfraIfIndex); in otPlatMdnsSetListeningEnabled()
184 otError MdnsSocket::SetListeningEnabled(otInstance *aInstance, bool aEnable, uint32_t aInfraIfIndex) in SetListeningEnabled() argument
188 VerifyOrExit(aEnable != mEnabled); in SetListeningEnabled()
191 if (aEnable) in SetListeningEnabled()
/openthread-latest/tests/unit/
Dtest_ncp_srp_server.cpp46 static otError GenerateSpinelSrpServerFrame(spinel_prop_key_t aProp, bool aEnable, uint8_t *aBuf, u… in GenerateSpinelSrpServerFrame() argument
55 SuccessOrExit(error = encoder.WriteBool(aEnable)); in GenerateSpinelSrpServerFrame()
/openthread-latest/src/ncp/
Dchanged_props_set.cpp127 otError ChangedPropsSet::EnablePropertyFilter(spinel_prop_key_t aPropKey, bool aEnable) in EnablePropertyFilter() argument
139 if (aEnable) in EnablePropertyFilter()
/openthread-latest/tests/nexus/platform/
Dnexus_radio.cpp78 …adioSetPromiscuous(otInstance *aInstance, bool aEnable) { AsNode(aInstance).mRadio.mPromiscuous = in otPlatRadioSetPromiscuous() argument
151 void otPlatRadioEnableSrcMatch(otInstance *aInstance, bool aEnable) in otPlatRadioEnableSrcMatch() argument
153 AsNode(aInstance).mRadio.mSrcMatchEnabled = aEnable; in otPlatRadioEnableSrcMatch()
/openthread-latest/src/core/thread/
Dsrc_match_controller.cpp112 void SourceMatchController::Enable(bool aEnable) in Enable() argument
114 mEnabled = aEnable; in Enable()
Dsrc_match_controller.hpp132 void Enable(bool aEnable);
/openthread-latest/src/core/utils/
Dlink_metrics_manager.cpp56 void LinkMetricsManager::SetEnabled(bool aEnable) in SetEnabled() argument
58 VerifyOrExit(mEnabled != aEnable); in SetEnabled()
59 mEnabled = aEnable; in SetEnabled()
/openthread-latest/src/core/backbone_router/
Dbbr_local.cpp77 void Local::SetEnabled(bool aEnable) in SetEnabled() argument
79 VerifyOrExit(aEnable != IsEnabled()); in SetEnabled()
81 if (aEnable) in SetEnabled()
/openthread-latest/tests/fuzz/
Dfuzzer_platform.cpp383 void otPlatRadioEnableSrcMatch(otInstance *aInstance, bool aEnable) in otPlatRadioEnableSrcMatch() argument
386 OT_UNUSED_VARIABLE(aEnable); in otPlatRadioEnableSrcMatch()
619 otError otPlatMdnsSetListeningEnabled(otInstance *aInstance, bool aEnable, uint32_t aInfraIfIndex) in otPlatMdnsSetListeningEnabled() argument
622 OT_UNUSED_VARIABLE(aEnable); in otPlatMdnsSetListeningEnabled()

123