Home
last modified time | relevance | path

Searched refs:out_data (Results 1 – 5 of 5) sorted by relevance

/optee_os/ta/pkcs11/src/
H A Dprocessing_aes.c61 struct out_data_ref *out_data; member
67 struct out_data_ref *out_data = NULL; in init_ae_aes_context() local
70 assert(!ctx->out_data && !ctx->out_count && in init_ae_aes_context()
73 out_data = TEE_Malloc(sizeof(*out_data), TEE_MALLOC_FILL_ZERO); in init_ae_aes_context()
76 if (!out_data || !pending_tag) { in init_ae_aes_context()
77 TEE_Free(out_data); in init_ae_aes_context()
83 ctx->out_data = out_data; in init_ae_aes_context()
93 TEE_Free(ctx->out_data[n].data); in release_ae_aes_context()
95 TEE_Free(ctx->out_data); in release_ae_aes_context()
96 ctx->out_data = NULL; in release_ae_aes_context()
[all …]
/optee_os/core/drivers/nvmem/
H A Dnvmem.c50 uint8_t **out_data) in nvmem_cell_malloc_and_read() argument
57 *out_data = malloc(cell->len); in nvmem_cell_malloc_and_read()
58 if (!out_data) in nvmem_cell_malloc_and_read()
61 res = cell->ops->read_cell(cell, *out_data); in nvmem_cell_malloc_and_read()
63 free(*out_data); in nvmem_cell_malloc_and_read()
/optee_os/core/include/tee/
H A Dtee_fs_rpc.h36 size_t data_len, void **out_data);
/optee_os/core/tee/
H A Dtee_fs_rpc.c109 size_t data_len, void **out_data) in tee_fs_rpc_read_init() argument
131 *out_data = va; in tee_fs_rpc_read_init()
/optee_os/core/include/drivers/
H A Dnvmem.h154 uint8_t **out_data);