Searched refs:aNumberOfEntries (Results 1 – 4 of 4) sorted by relevance
310 … uint32_t *otLinkGetTxDirectRetrySuccessHistogram(otInstance *aInstance, uint8_t *aNumberOfEntries) in otLinkGetTxDirectRetrySuccessHistogram() argument312 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() argument321 AssertPointerIsNotNull(aNumberOfEntries); in otLinkGetTxIndirectRetrySuccessHistogram()324 …togram = AsCoreType(aInstance).Get<Mac::Mac>().GetIndirectRetrySuccessHistogram(*aNumberOfEntries); in otLinkGetTxIndirectRetrySuccessHistogram()327 *aNumberOfEntries = 0; in otLinkGetTxIndirectRetrySuccessHistogram()
857 …uint32_t *otLinkGetTxDirectRetrySuccessHistogram(otInstance *aInstance, uint8_t *aNumberOfEntries);870 …nt32_t *otLinkGetTxIndirectRetrySuccessHistogram(otInstance *aInstance, uint8_t *aNumberOfEntries);
502 const uint32_t *GetDirectRetrySuccessHistogram(uint8_t &aNumberOfEntries);513 const uint32_t *GetIndirectRetrySuccessHistogram(uint8_t &aNumberOfEntries);
2259 const uint32_t *Mac::GetDirectRetrySuccessHistogram(uint8_t &aNumberOfEntries) in GetDirectRetrySuccessHistogram() argument2263 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() argument2278 aNumberOfEntries = OPENTHREAD_CONFIG_MAC_RETRY_SUCCESS_HISTOGRAM_MAX_SIZE_COUNT_INDIRECT; in GetIndirectRetrySuccessHistogram()2282 aNumberOfEntries = mMaxFrameRetriesIndirect + 1; in GetIndirectRetrySuccessHistogram()