Home
last modified time | relevance | path

Searched refs:aThreshold (Results 1 – 17 of 17) sorted by relevance

/openthread-latest/src/core/radio/
Dradio.hpp421 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/
Dmle_router.hpp286 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/
Dchannel_manager_api.cpp138 void otChannelManagerSetCcaFailureRateThreshold(otInstance *aInstance, uint16_t aThreshold) in otChannelManagerSetCcaFailureRateThreshold() argument
140 … return AsCoreType(aInstance).Get<Utils::ChannelManager>().SetCcaFailureRateThreshold(aThreshold); in otChannelManagerSetCcaFailureRateThreshold()
Dthread_ftd_api.cpp150 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/
Djam_detector.cpp122 void JamDetector::SetRssiThreshold(int8_t aThreshold) in SetRssiThreshold() argument
124 mRssiThreshold = aThreshold; in SetRssiThreshold()
Djam_detector.hpp113 void SetRssiThreshold(int8_t aThreshold);
Dchannel_manager.hpp289 void SetCcaFailureRateThreshold(uint16_t aThreshold);
Dchannel_manager.cpp482 void ChannelManager::SetCcaFailureRateThreshold(uint16_t aThreshold) in SetCcaFailureRateThreshold() argument
484 mCcaFailureRateThreshold = aThreshold; in SetCcaFailureRateThreshold()
/openthread-latest/tests/fuzz/
Dfuzzer_platform.cpp436 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/
Dchannel_manager.h280 void otChannelManagerSetCcaFailureRateThreshold(otInstance *aInstance, uint16_t aThreshold);
Dthread_ftd.h396 void otThreadSetRouterUpgradeThreshold(otInstance *aInstance, uint8_t aThreshold);
500 void otThreadSetRouterDowngradeThreshold(otInstance *aInstance, uint8_t aThreshold);
/openthread-latest/src/posix/platform/
Dradio.cpp468 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/
Dradio.h610 otError otPlatRadioGetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t *aThreshold);
622 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold);
/openthread-latest/examples/platforms/simulation/
Dradio.c955 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/
Dradio_spinel.hpp302 otError GetCcaEnergyDetectThreshold(int8_t &aThreshold);
313 otError SetCcaEnergyDetectThreshold(int8_t aThreshold);
Dradio_spinel.cpp1133 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/
Dtest_platform.cpp577 otError otPlatRadioSetCcaEnergyDetectThreshold(otInstance *aInstance, int8_t aThreshold) in otPlatRadioSetCcaEnergyDetectThreshold() argument
580 OT_UNUSED_VARIABLE(aThreshold); in otPlatRadioSetCcaEnergyDetectThreshold()