Home
last modified time | relevance | path

Searched refs:aOutput (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/modules/openthread/platform/
Dentropy.c19 otError otPlatEntropyGet(uint8_t *aOutput, uint16_t aOutputLength) in otPlatEntropyGet() argument
23 if ((aOutput == NULL) || (aOutputLength == 0)) { in otPlatEntropyGet()
27 err = sys_csrand_get(aOutput, aOutputLength); in otPlatEntropyGet()
Dcrypto_psa.c318 otError otPlatCryptoAesEncrypt(otCryptoContext *aContext, const uint8_t *aInput, uint8_t *aOutput) in otPlatCryptoAesEncrypt() argument
325 if (aInput == NULL || aOutput == NULL || !checkContext(aContext, sizeof(psa_key_id_t))) { in otPlatCryptoAesEncrypt()
330 status = psa_cipher_encrypt(*key_ref, PSA_ALG_ECB_NO_PADDING, aInput, block_size, aOutput, in otPlatCryptoAesEncrypt()
Dradio_spinel.cpp349 otError otPlatDiagProcess(otInstance *aInstance, int argc, char *argv[], char *aOutput, in otPlatDiagProcess() argument
362 return psRadioSpinel->PlatDiagProcess(cmd, aOutput, aOutputMaxLen); in otPlatDiagProcess()