Searched refs:aBufLength (Results 1 – 2 of 2) sorted by relevance
/Zephyr-latest/modules/openthread/platform/ |
D | uart.c | 120 void otPlatUartReceived(const uint8_t *aBuf, uint16_t aBufLength) in otPlatUartReceived() argument 122 otNcpHdlcReceive(aBuf, aBufLength); in otPlatUartReceived() 206 otError otPlatUartSend(const uint8_t *aBuf, uint16_t aBufLength) in otPlatUartSend() argument 214 write_length = aBufLength; in otPlatUartSend()
|
D | crypto_psa.c | 263 uint16_t aBufLength) in otPlatCryptoHmacSha256Update() argument 273 return psaToOtError(psa_mac_update(operation, (const uint8_t *)aBuf, aBufLength)); in otPlatCryptoHmacSha256Update() 276 otError otPlatCryptoHmacSha256Finish(otCryptoContext *aContext, uint8_t *aBuf, size_t aBufLength) in otPlatCryptoHmacSha256Finish() argument 287 return psaToOtError(psa_mac_sign_finish(operation, aBuf, aBufLength, &mac_length)); in otPlatCryptoHmacSha256Finish() 381 otError otPlatCryptoSha256Update(otCryptoContext *aContext, const void *aBuf, uint16_t aBufLength) in otPlatCryptoSha256Update() argument 391 return psaToOtError(psa_hash_update(operation, (const uint8_t *)aBuf, aBufLength)); in otPlatCryptoSha256Update()
|