Home
last modified time | relevance | path

Searched refs:aBuf (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/modules/openthread/platform/
Duart.c120 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
208 if (aBuf == NULL) { in otPlatUartSend()
213 write_buffer = aBuf; in otPlatUartSend()
Dcrypto_psa.c262 otError otPlatCryptoHmacSha256Update(otCryptoContext *aContext, const void *aBuf, in otPlatCryptoHmacSha256Update() argument
267 if (aBuf == NULL || !checkContext(aContext, sizeof(psa_mac_operation_t))) { in otPlatCryptoHmacSha256Update()
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
281 if (aBuf == NULL || !checkContext(aContext, sizeof(psa_mac_operation_t))) { in otPlatCryptoHmacSha256Finish()
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
385 if (aBuf == NULL || !checkContext(aContext, sizeof(psa_hash_operation_t))) { in otPlatCryptoSha256Update()
391 return psaToOtError(psa_hash_update(operation, (const uint8_t *)aBuf, aBufLength)); in otPlatCryptoSha256Update()