Home
last modified time | relevance | path

Searched refs:aNumberOfEntries (Results 1 – 4 of 4) sorted by relevance

/openthread-latest/src/core/api/
Dlink_api.cpp310 … uint32_t *otLinkGetTxDirectRetrySuccessHistogram(otInstance *aInstance, uint8_t *aNumberOfEntries) in otLinkGetTxDirectRetrySuccessHistogram() argument
312 AssertPointerIsNotNull(aNumberOfEntries); in otLinkGetTxDirectRetrySuccessHistogram()
314 return AsCoreType(aInstance).Get<Mac::Mac>().GetDirectRetrySuccessHistogram(*aNumberOfEntries); in otLinkGetTxDirectRetrySuccessHistogram()
317 …int32_t *otLinkGetTxIndirectRetrySuccessHistogram(otInstance *aInstance, uint8_t *aNumberOfEntries) in otLinkGetTxIndirectRetrySuccessHistogram() argument
321 AssertPointerIsNotNull(aNumberOfEntries); in otLinkGetTxIndirectRetrySuccessHistogram()
324 …togram = AsCoreType(aInstance).Get<Mac::Mac>().GetIndirectRetrySuccessHistogram(*aNumberOfEntries); in otLinkGetTxIndirectRetrySuccessHistogram()
327 *aNumberOfEntries = 0; in otLinkGetTxIndirectRetrySuccessHistogram()
/openthread-latest/include/openthread/
Dlink.h857 …uint32_t *otLinkGetTxDirectRetrySuccessHistogram(otInstance *aInstance, uint8_t *aNumberOfEntries);
870 …nt32_t *otLinkGetTxIndirectRetrySuccessHistogram(otInstance *aInstance, uint8_t *aNumberOfEntries);
/openthread-latest/src/core/mac/
Dmac.hpp502 const uint32_t *GetDirectRetrySuccessHistogram(uint8_t &aNumberOfEntries);
513 const uint32_t *GetIndirectRetrySuccessHistogram(uint8_t &aNumberOfEntries);
Dmac.cpp2259 const uint32_t *Mac::GetDirectRetrySuccessHistogram(uint8_t &aNumberOfEntries) in GetDirectRetrySuccessHistogram() argument
2263 aNumberOfEntries = OPENTHREAD_CONFIG_MAC_RETRY_SUCCESS_HISTOGRAM_MAX_SIZE_COUNT_DIRECT; in GetDirectRetrySuccessHistogram()
2267 aNumberOfEntries = mMaxFrameRetriesDirect + 1; in GetDirectRetrySuccessHistogram()
2274 const uint32_t *Mac::GetIndirectRetrySuccessHistogram(uint8_t &aNumberOfEntries) in GetIndirectRetrySuccessHistogram() argument
2278 aNumberOfEntries = OPENTHREAD_CONFIG_MAC_RETRY_SUCCESS_HISTOGRAM_MAX_SIZE_COUNT_INDIRECT; in GetIndirectRetrySuccessHistogram()
2282 aNumberOfEntries = mMaxFrameRetriesIndirect + 1; in GetIndirectRetrySuccessHistogram()