| /openthread-latest/examples/platforms/simulation/ |
| D | diag.c | 162 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()
|
| D | dso_transport.c | 35 void otPlatDsoEnableListening(otInstance *aInstance, bool aEnable) in otPlatDsoEnableListening() argument 38 OT_UNUSED_VARIABLE(aEnable); in otPlatDsoEnableListening()
|
| /openthread-latest/src/core/api/ |
| D | trel_api.cpp | 44 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()
|
| D | link_raw_api.cpp | 63 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()
|
| D | link_metrics_api.cpp | 105 void otLinkMetricsManagerSetEnabled(otInstance *aInstance, bool aEnable) in otLinkMetricsManagerSetEnabled() argument 107 AsCoreType(aInstance).Get<Utils::LinkMetricsManager>().SetEnabled(aEnable); in otLinkMetricsManagerSetEnabled()
|
| /openthread-latest/include/openthread/platform/ |
| D | diag.h | 240 otError otPlatDiagRadioRawPowerSettingEnable(otInstance *aInstance, bool aEnable); 252 otError otPlatDiagRadioTransmitCarrier(otInstance *aInstance, bool aEnable); 264 otError otPlatDiagRadioTransmitStream(otInstance *aInstance, bool aEnable);
|
| D | mdns_socket.h | 85 otError otPlatMdnsSetListeningEnabled(otInstance *aInstance, bool aEnable, uint32_t aInfraIfIndex);
|
| D | radio.h | 663 void otPlatRadioSetPromiscuous(otInstance *aInstance, bool aEnable); 698 void otPlatRadioSetRxOnWhenIdle(otInstance *aInstance, bool aEnable); 1036 void otPlatRadioEnableSrcMatch(otInstance *aInstance, bool aEnable);
|
| D | dso_transport.h | 76 void otPlatDsoEnableListening(otInstance *aInstance, bool aEnable);
|
| /openthread-latest/include/openthread/ |
| D | trel.h | 89 void otTrelSetEnabled(otInstance *aInstance, bool aEnable); 140 void otTrelSetFilterEnabled(otInstance *aInstance, bool aEnable);
|
| D | link_raw.h | 105 otError otLinkRawSetPromiscuous(otInstance *aInstance, bool aEnable); 262 otError otLinkRawSrcMatchEnable(otInstance *aInstance, bool aEnable);
|
| /openthread-latest/src/core/radio/ |
| D | radio.hpp | 446 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
|
| D | trel_interface.hpp | 168 void SetEnabled(bool aEnable); 230 void SetFilterEnabled(bool aEnable) { mFiltered = aEnable; } in SetFilterEnabled() argument
|
| /openthread-latest/src/core/mac/ |
| D | sub_mac_wed.cpp | 51 void SubMac::UpdateWakeupListening(bool aEnable, uint32_t aInterval, uint32_t aDuration, uint8_t aC… in UpdateWakeupListening() argument 60 if (aEnable) in UpdateWakeupListening()
|
| D | mac_links.hpp | 514 … 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/ |
| D | radio.cpp | 265 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()
|
| D | mdns_socket.cpp | 48 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/ |
| D | test_ncp_srp_server.cpp | 46 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/ |
| D | changed_props_set.cpp | 127 otError ChangedPropsSet::EnablePropertyFilter(spinel_prop_key_t aPropKey, bool aEnable) in EnablePropertyFilter() argument 139 if (aEnable) in EnablePropertyFilter()
|
| /openthread-latest/tests/nexus/platform/ |
| D | nexus_radio.cpp | 78 …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/ |
| D | src_match_controller.cpp | 112 void SourceMatchController::Enable(bool aEnable) in Enable() argument 114 mEnabled = aEnable; in Enable()
|
| D | src_match_controller.hpp | 132 void Enable(bool aEnable);
|
| /openthread-latest/src/core/utils/ |
| D | link_metrics_manager.cpp | 56 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/ |
| D | bbr_local.cpp | 77 void Local::SetEnabled(bool aEnable) in SetEnabled() argument 79 VerifyOrExit(aEnable != IsEnabled()); in SetEnabled() 81 if (aEnable) in SetEnabled()
|
| /openthread-latest/tests/fuzz/ |
| D | fuzzer_platform.cpp | 383 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()
|