/openthread-latest/src/core/radio/ |
D | radio.hpp | 421 Error GetCcaEnergyDetectThreshold(int8_t &aThreshold); 431 Error SetCcaEnergyDetectThreshold(int8_t aThreshold); 911 inline Error Radio::GetCcaEnergyDetectThreshold(int8_t &aThreshold) in GetCcaEnergyDetectThreshold() argument 913 return otPlatRadioGetCcaEnergyDetectThreshold(GetInstancePtr(), &aThreshold); in GetCcaEnergyDetectThreshold() 916 inline Error Radio::SetCcaEnergyDetectThreshold(int8_t aThreshold) in SetCcaEnergyDetectThreshold() argument 918 return otPlatRadioSetCcaEnergyDetectThreshold(GetInstancePtr(), aThreshold); in SetCcaEnergyDetectThreshold()
|
/openthread-latest/src/core/thread/ |
D | mle_router.hpp | 286 void SetRouterUpgradeThreshold(uint8_t aThreshold) { mRouterUpgradeThreshold = aThreshold; } in SetRouterUpgradeThreshold() argument 300 void SetRouterDowngradeThreshold(uint8_t aThreshold) { mRouterDowngradeThreshold = aThreshold; } in SetRouterDowngradeThreshold() argument
|
/openthread-latest/src/core/api/ |
D | channel_manager_api.cpp | 138 void otChannelManagerSetCcaFailureRateThreshold(otInstance *aInstance, uint16_t aThreshold) in otChannelManagerSetCcaFailureRateThreshold() argument 140 … return AsCoreType(aInstance).Get<Utils::ChannelManager>().SetCcaFailureRateThreshold(aThreshold); in otChannelManagerSetCcaFailureRateThreshold()
|
D | thread_ftd_api.cpp | 150 void otThreadSetRouterUpgradeThreshold(otInstance *aInstance, uint8_t aThreshold) in otThreadSetRouterUpgradeThreshold() argument 152 AsCoreType(aInstance).Get<Mle::MleRouter>().SetRouterUpgradeThreshold(aThreshold); in otThreadSetRouterUpgradeThreshold() 192 void otThreadSetRouterDowngradeThreshold(otInstance *aInstance, uint8_t aThreshold) in otThreadSetRouterDowngradeThreshold() argument 194 AsCoreType(aInstance).Get<Mle::MleRouter>().SetRouterDowngradeThreshold(aThreshold); in otThreadSetRouterDowngradeThreshold()
|
/openthread-latest/src/core/utils/ |
D | jam_detector.cpp | 122 void JamDetector::SetRssiThreshold(int8_t aThreshold) in SetRssiThreshold() argument 124 mRssiThreshold = aThreshold; in SetRssiThreshold()
|
D | jam_detector.hpp | 113 void SetRssiThreshold(int8_t aThreshold);
|
D | channel_manager.hpp | 289 void SetCcaFailureRateThreshold(uint16_t aThreshold);
|
D | channel_manager.cpp | 482 void ChannelManager::SetCcaFailureRateThreshold(uint16_t aThreshold) in SetCcaFailureRateThreshold() argument 484 mCcaFailureRateThreshold = aThreshold; in SetCcaFailureRateThreshold()
|
/openthread-latest/tests/fuzz/ |
D | fuzzer_platform.cpp | 436 otError otPlatRadioGetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t *aThreshold) in otPlatRadioGetCcaEnergyDetectThreshold() argument 439 OT_UNUSED_VARIABLE(aThreshold); in otPlatRadioGetCcaEnergyDetectThreshold() 443 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold) in otPlatRadioSetCcaEnergyDetectThreshold() argument 446 OT_UNUSED_VARIABLE(aThreshold); in otPlatRadioSetCcaEnergyDetectThreshold()
|
/openthread-latest/include/openthread/ |
D | channel_manager.h | 280 void otChannelManagerSetCcaFailureRateThreshold(otInstance *aInstance, uint16_t aThreshold);
|
D | thread_ftd.h | 396 void otThreadSetRouterUpgradeThreshold(otInstance *aInstance, uint8_t aThreshold); 500 void otThreadSetRouterDowngradeThreshold(otInstance *aInstance, uint8_t aThreshold);
|
/openthread-latest/src/posix/platform/ |
D | radio.cpp | 468 otError otPlatRadioGetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t *aThreshold) in otPlatRadioGetCcaEnergyDetectThreshold() argument 471 assert(aThreshold != nullptr); in otPlatRadioGetCcaEnergyDetectThreshold() 472 return GetRadioSpinel().GetCcaEnergyDetectThreshold(*aThreshold); in otPlatRadioGetCcaEnergyDetectThreshold() 475 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold) in otPlatRadioSetCcaEnergyDetectThreshold() argument 478 return GetRadioSpinel().SetCcaEnergyDetectThreshold(aThreshold); in otPlatRadioSetCcaEnergyDetectThreshold()
|
/openthread-latest/include/openthread/platform/ |
D | radio.h | 610 otError otPlatRadioGetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t *aThreshold); 622 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold);
|
/openthread-latest/examples/platforms/simulation/ |
D | radio.c | 955 otError otPlatRadioGetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t *aThreshold) in otPlatRadioGetCcaEnergyDetectThreshold() argument 961 *aThreshold = sCcaEdThresh; in otPlatRadioGetCcaEnergyDetectThreshold() 966 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold) in otPlatRadioSetCcaEnergyDetectThreshold() argument 972 sCcaEdThresh = aThreshold; in otPlatRadioSetCcaEnergyDetectThreshold()
|
/openthread-latest/src/lib/spinel/ |
D | radio_spinel.hpp | 302 otError GetCcaEnergyDetectThreshold(int8_t &aThreshold); 313 otError SetCcaEnergyDetectThreshold(int8_t aThreshold);
|
D | radio_spinel.cpp | 1133 otError RadioSpinel::GetCcaEnergyDetectThreshold(int8_t &aThreshold) in GetCcaEnergyDetectThreshold() argument 1135 otError error = Get(SPINEL_PROP_PHY_CCA_THRESHOLD, SPINEL_DATATYPE_INT8_S, &aThreshold); in GetCcaEnergyDetectThreshold() 1239 otError RadioSpinel::SetCcaEnergyDetectThreshold(int8_t aThreshold) in SetCcaEnergyDetectThreshold() argument 1243 SuccessOrExit(error = Set(SPINEL_PROP_PHY_CCA_THRESHOLD, SPINEL_DATATYPE_INT8_S, aThreshold)); in SetCcaEnergyDetectThreshold() 1246 mCcaEnergyDetectThreshold = aThreshold; in SetCcaEnergyDetectThreshold()
|
/openthread-latest/tests/unit/ |
D | test_platform.cpp | 577 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold) in otPlatRadioSetCcaEnergyDetectThreshold() argument 580 OT_UNUSED_VARIABLE(aThreshold); in otPlatRadioSetCcaEnergyDetectThreshold()
|