| H A D | fs_htree.c | 104 struct tee_fs_htree *ht; member 109 static TEE_Result rpc_read(struct tee_fs_htree *ht, enum tee_fs_htree_type type, in rpc_read() argument 117 res = ht->stor->rpc_read_init(ht->stor_aux, &op, type, idx, vers, &p); in rpc_read() 121 res = ht->stor->rpc_read_final(&op, &bytes); in rpc_read() 132 static TEE_Result rpc_read_head(struct tee_fs_htree *ht, size_t vers, in rpc_read_head() argument 135 return rpc_read(ht, TEE_FS_HTREE_TYPE_HEAD, 0, vers, in rpc_read_head() 139 static TEE_Result rpc_read_node(struct tee_fs_htree *ht, size_t node_id, in rpc_read_node() argument 143 return rpc_read(ht, TEE_FS_HTREE_TYPE_NODE, node_id - 1, vers, in rpc_read_node() 147 static TEE_Result rpc_write(struct tee_fs_htree *ht, in rpc_write() argument 155 res = ht->stor->rpc_write_init(ht->stor_aux, &op, type, idx, vers, &p); in rpc_write() [all …]
|