Searched refs:data_core (Results 1 – 8 of 8) sorted by relevance
| /optee_os/core/kernel/ |
| H A D | embedded_ts.c | 122 static TEE_Result read_uncompressed(struct ts_store_handle *h, void *data_core, in read_uncompressed() argument 132 if (data_core) in read_uncompressed() 133 memcpy(data_core, src, len); in read_uncompressed() 142 static TEE_Result read_compressed(struct ts_store_handle *h, void *data_core, in read_compressed() argument 179 if (data_core) in read_compressed() 180 memcpy((uint8_t *)data_core + total, bb, out); in read_compressed() 208 TEE_Result emb_ts_read(struct ts_store_handle *h, void *data_core, in emb_ts_read() argument 212 return read_compressed(h, data_core, data_user, len); in emb_ts_read() 214 return read_uncompressed(h, data_core, data_user, len); in emb_ts_read()
|
| H A D | secstor_ta.c | 58 static TEE_Result secstor_ta_read(struct ts_store_handle *h, void *data_core, in secstor_ta_read() argument 63 TEE_Result res = tee_tadb_ta_read(ta, data_core, data_user, &l); in secstor_ta_read()
|
| H A D | ree_fs_ta.c | 552 static TEE_Result ree_fs_ta_read(struct ts_store_handle *h, void *data_core, in ree_fs_ta_read() argument 570 if (data_core) { in ree_fs_ta_read() 571 dst = data_core; in ree_fs_ta_read() 772 static TEE_Result buf_ta_read(struct ts_store_handle *h, void *data_core, in buf_ta_read() argument 784 if (data_core) in buf_ta_read() 785 memcpy(data_core, src, len); in buf_ta_read()
|
| /optee_os/core/include/kernel/ |
| H A D | embedded_ts.h | 25 TEE_Result emb_ts_read(struct ts_store_handle *h, void *data_core,
|
| H A D | ts_store.h | 52 TEE_Result (*read)(struct ts_store_handle *h, void *data_core,
|
| /optee_os/core/include/tee/ |
| H A D | tee_fs.h | 39 const void *data_core, const void *data_user,
|
| /optee_os/core/tee/ |
| H A D | tee_ree_fs.c | 805 const void *data_core, const void *data_user, in ree_fs_create() argument 815 assert(!data_core || !data_user); in ree_fs_create() 846 if ((data_core || data_user) && data_size) { in ree_fs_create() 847 res = ree_fs_write_primitive(*fh, pos, data_core, data_user, in ree_fs_create()
|
| H A D | tee_rpmb_fs.c | 3047 const void *data_core, const void *data_user, in rpmb_fs_create() argument 3056 assert(!data_core || !data_user); in rpmb_fs_create() 3081 if (data_core) { in rpmb_fs_create() 3082 res = rpmb_fs_write_primitive(fh, pos, data_core, in rpmb_fs_create()
|