Searched refs:aCoexMetrics (Results 1 – 5 of 5) sorted by relevance
/openthread-latest/examples/platforms/simulation/ |
D | radio.c | 1035 otError otPlatRadioGetCoexMetrics(otInstance *aInstance, otRadioCoexMetrics *aCoexMetrics) in otPlatRadioGetCoexMetrics() argument 1042 otEXPECT_ACTION(aCoexMetrics != NULL, error = OT_ERROR_INVALID_ARGS); in otPlatRadioGetCoexMetrics() 1044 memset(aCoexMetrics, 0, sizeof(otRadioCoexMetrics)); in otPlatRadioGetCoexMetrics() 1046 aCoexMetrics->mStopped = false; in otPlatRadioGetCoexMetrics() 1047 aCoexMetrics->mNumGrantGlitch = 1; in otPlatRadioGetCoexMetrics() 1048 aCoexMetrics->mNumTxRequest = 2; in otPlatRadioGetCoexMetrics() 1049 aCoexMetrics->mNumTxGrantImmediate = 3; in otPlatRadioGetCoexMetrics() 1050 aCoexMetrics->mNumTxGrantWait = 4; in otPlatRadioGetCoexMetrics() 1051 aCoexMetrics->mNumTxGrantWaitActivated = 5; in otPlatRadioGetCoexMetrics() 1052 aCoexMetrics->mNumTxGrantWaitTimeout = 6; in otPlatRadioGetCoexMetrics() [all …]
|
/openthread-latest/src/lib/spinel/ |
D | radio_spinel.cpp | 1183 otError RadioSpinel::GetCoexMetrics(otRadioCoexMetrics &aCoexMetrics) in GetCoexMetrics() argument 1209 … &aCoexMetrics.mNumTxRequest, &aCoexMetrics.mNumTxGrantImmediate, &aCoexMetrics.mNumTxGrantWait, in GetCoexMetrics() 1210 &aCoexMetrics.mNumTxGrantWaitActivated, &aCoexMetrics.mNumTxGrantWaitTimeout, in GetCoexMetrics() 1211 &aCoexMetrics.mNumTxGrantDeactivatedDuringRequest, &aCoexMetrics.mNumTxDelayedGrant, in GetCoexMetrics() 1212 …&aCoexMetrics.mAvgTxRequestToGrantTime, &aCoexMetrics.mNumRxRequest, &aCoexMetrics.mNumRxGrantImme… in GetCoexMetrics() 1213 &aCoexMetrics.mNumRxGrantWait, &aCoexMetrics.mNumRxGrantWaitActivated, in GetCoexMetrics() 1214 … &aCoexMetrics.mNumRxGrantWaitTimeout, &aCoexMetrics.mNumRxGrantDeactivatedDuringRequest, in GetCoexMetrics() 1215 …&aCoexMetrics.mNumRxDelayedGrant, &aCoexMetrics.mAvgRxRequestToGrantTime, &aCoexMetrics.mNumRxGran… in GetCoexMetrics() 1216 &aCoexMetrics.mStopped, &aCoexMetrics.mNumGrantGlitch); in GetCoexMetrics()
|
D | radio_spinel.hpp | 405 otError GetCoexMetrics(otRadioCoexMetrics &aCoexMetrics);
|
/openthread-latest/src/posix/platform/ |
D | radio.cpp | 513 otError otPlatRadioGetCoexMetrics(otInstance *aInstance, otRadioCoexMetrics *aCoexMetrics) in otPlatRadioGetCoexMetrics() argument 519 VerifyOrExit(aCoexMetrics != nullptr, error = OT_ERROR_INVALID_ARGS); in otPlatRadioGetCoexMetrics() 521 error = GetRadioSpinel().GetCoexMetrics(*aCoexMetrics); in otPlatRadioGetCoexMetrics()
|
/openthread-latest/include/openthread/platform/ |
D | radio.h | 1149 otError otPlatRadioGetCoexMetrics(otInstance *aInstance, otRadioCoexMetrics *aCoexMetrics);
|