/openthread-3.5.0/src/core/api/ |
D | channel_manager_api.cpp | 118 void otChannelManagerSetCcaFailureRateThreshold(otInstance *aInstance, uint16_t aThreshold) in otChannelManagerSetCcaFailureRateThreshold() argument 120 … return AsCoreType(aInstance).Get<Utils::ChannelManager>().SetCcaFailureRateThreshold(aThreshold); in otChannelManagerSetCcaFailureRateThreshold()
|
D | thread_ftd_api.cpp | 153 void otThreadSetRouterUpgradeThreshold(otInstance *aInstance, uint8_t aThreshold) in otThreadSetRouterUpgradeThreshold() argument 155 AsCoreType(aInstance).Get<Mle::MleRouter>().SetRouterUpgradeThreshold(aThreshold); in otThreadSetRouterUpgradeThreshold() 213 void otThreadSetRouterDowngradeThreshold(otInstance *aInstance, uint8_t aThreshold) in otThreadSetRouterDowngradeThreshold() argument 215 AsCoreType(aInstance).Get<Mle::MleRouter>().SetRouterDowngradeThreshold(aThreshold); in otThreadSetRouterDowngradeThreshold()
|
/openthread-3.5.0/src/core/radio/ |
D | radio.hpp | 407 Error GetCcaEnergyDetectThreshold(int8_t &aThreshold); 418 Error SetCcaEnergyDetectThreshold(int8_t aThreshold); 792 inline Error Radio::GetCcaEnergyDetectThreshold(int8_t &aThreshold) in GetCcaEnergyDetectThreshold() argument 794 return otPlatRadioGetCcaEnergyDetectThreshold(GetInstancePtr(), &aThreshold); in GetCcaEnergyDetectThreshold() 797 inline Error Radio::SetCcaEnergyDetectThreshold(int8_t aThreshold) in SetCcaEnergyDetectThreshold() argument 799 return otPlatRadioSetCcaEnergyDetectThreshold(GetInstancePtr(), aThreshold); in SetCcaEnergyDetectThreshold()
|
/openthread-3.5.0/src/core/thread/ |
D | mle_router.hpp | 303 void SetRouterUpgradeThreshold(uint8_t aThreshold) { mRouterUpgradeThreshold = aThreshold; } in SetRouterUpgradeThreshold() argument 319 void SetRouterDowngradeThreshold(uint8_t aThreshold) { mRouterDowngradeThreshold = aThreshold; } in SetRouterDowngradeThreshold() argument
|
/openthread-3.5.0/src/core/utils/ |
D | jam_detector.cpp | 127 void JamDetector::SetRssiThreshold(int8_t aThreshold) in SetRssiThreshold() argument 129 mRssiThreshold = aThreshold; in SetRssiThreshold()
|
D | jam_detector.hpp | 118 void SetRssiThreshold(int8_t aThreshold);
|
D | channel_manager.cpp | 347 void ChannelManager::SetCcaFailureRateThreshold(uint16_t aThreshold) in SetCcaFailureRateThreshold() argument 349 mCcaFailureRateThreshold = aThreshold; in SetCcaFailureRateThreshold()
|
D | channel_manager.hpp | 241 void SetCcaFailureRateThreshold(uint16_t aThreshold);
|
/openthread-3.5.0/tests/fuzz/ |
D | fuzzer_platform.cpp | 399 otError otPlatRadioGetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t *aThreshold) in otPlatRadioGetCcaEnergyDetectThreshold() argument 402 OT_UNUSED_VARIABLE(aThreshold); in otPlatRadioGetCcaEnergyDetectThreshold() 406 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold) in otPlatRadioSetCcaEnergyDetectThreshold() argument 409 OT_UNUSED_VARIABLE(aThreshold); in otPlatRadioSetCcaEnergyDetectThreshold()
|
/openthread-3.5.0/include/openthread/ |
D | channel_manager.h | 233 void otChannelManagerSetCcaFailureRateThreshold(otInstance *aInstance, uint16_t aThreshold);
|
D | thread_ftd.h | 420 void otThreadSetRouterUpgradeThreshold(otInstance *aInstance, uint8_t aThreshold); 518 void otThreadSetRouterDowngradeThreshold(otInstance *aInstance, uint8_t aThreshold);
|
/openthread-3.5.0/src/posix/platform/ |
D | radio.cpp | 449 otError otPlatRadioGetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t *aThreshold) in otPlatRadioGetCcaEnergyDetectThreshold() argument 452 assert(aThreshold != nullptr); in otPlatRadioGetCcaEnergyDetectThreshold() 453 return sRadioSpinel.GetCcaEnergyDetectThreshold(*aThreshold); in otPlatRadioGetCcaEnergyDetectThreshold() 456 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold) in otPlatRadioSetCcaEnergyDetectThreshold() argument 459 return sRadioSpinel.SetCcaEnergyDetectThreshold(aThreshold); in otPlatRadioSetCcaEnergyDetectThreshold()
|
/openthread-3.5.0/include/openthread/platform/ |
D | radio.h | 564 otError otPlatRadioGetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t *aThreshold); 577 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold);
|
/openthread-3.5.0/src/lib/spinel/ |
D | radio_spinel.hpp | 232 otError GetCcaEnergyDetectThreshold(int8_t &aThreshold); 244 otError SetCcaEnergyDetectThreshold(int8_t aThreshold);
|
D | radio_spinel_impl.hpp | 1209 … InterfaceType> otError RadioSpinel<InterfaceType>::GetCcaEnergyDetectThreshold(int8_t &aThreshold) in GetCcaEnergyDetectThreshold() argument 1211 otError error = Get(SPINEL_PROP_PHY_CCA_THRESHOLD, SPINEL_DATATYPE_INT8_S, &aThreshold); in GetCcaEnergyDetectThreshold() 1315 …e InterfaceType> otError RadioSpinel<InterfaceType>::SetCcaEnergyDetectThreshold(int8_t aThreshold) in SetCcaEnergyDetectThreshold() argument 1319 SuccessOrExit(error = Set(SPINEL_PROP_PHY_CCA_THRESHOLD, SPINEL_DATATYPE_INT8_S, aThreshold)); in SetCcaEnergyDetectThreshold() 1322 mCcaEnergyDetectThreshold = aThreshold; in SetCcaEnergyDetectThreshold()
|
/openthread-3.5.0/examples/platforms/simulation/ |
D | radio.c | 1175 otError otPlatRadioGetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t *aThreshold) in otPlatRadioGetCcaEnergyDetectThreshold() argument 1181 *aThreshold = sCcaEdThresh; in otPlatRadioGetCcaEnergyDetectThreshold() 1186 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold) in otPlatRadioSetCcaEnergyDetectThreshold() argument 1192 sCcaEdThresh = aThreshold; in otPlatRadioSetCcaEnergyDetectThreshold()
|
/openthread-3.5.0/tests/unit/ |
D | test_platform.cpp | 516 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold) in otPlatRadioSetCcaEnergyDetectThreshold() argument 519 OT_UNUSED_VARIABLE(aThreshold); in otPlatRadioSetCcaEnergyDetectThreshold()
|