Searched refs:input_copy (Results 1 – 3 of 3) sorted by relevance
/openthread-latest/third_party/mbedtls/repo/library/ |
D | psa_crypto_invasive.h | 77 uint8_t *input_copy, size_t input_copy_len);
|
D | psa_crypto.c | 198 #define LOCAL_INPUT_ALLOC(input, length, input_copy) \ argument 204 input_copy = LOCAL_INPUT_COPY_OF_##input.buffer; 212 #define LOCAL_INPUT_FREE(input, input_copy) \ argument 213 input_copy = NULL; \ 271 #define LOCAL_INPUT_ALLOC(input, length, input_copy) \ argument 272 input_copy = input; 273 #define LOCAL_INPUT_FREE(input, input_copy) \ argument 274 input_copy = NULL; 9013 uint8_t *input_copy, size_t input_copy_len) in psa_crypto_copy_input() argument 9026 memcpy(input_copy, input, input_len); in psa_crypto_copy_input()
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/ |
D | psa-shared-memory.md | 520 * `psa_crypto_copy_input(const uint8_t *input, size_t input_length, uint8_t *input_copy, size_t inp… 575 …input_copy)`, which tries to allocate an input using `psa_crypto_local_input_alloc()`. On failure,… 576 * `LOCAL_INPUT_FREE(input, input_copy)`, which frees the input copy using `psa_crypto_local_input_f…
|