Lines Matching refs:op
92 static TEE_Result test_read_init(void *aux, struct tee_fs_rpc_operation *op, in test_read_init() argument
103 memset(op, 0, sizeof(*op)); in test_read_init()
104 op->params[0].u.value.a = (vaddr_t)aux; in test_read_init()
105 op->params[0].u.value.b = offs; in test_read_init()
106 op->params[0].u.value.c = sz; in test_read_init()
118 static TEE_Result test_read_final(struct tee_fs_rpc_operation *op, in test_read_final() argument
121 struct test_aux *a = uint_to_ptr(op->params[0].u.value.a); in test_read_final()
122 size_t offs = op->params[0].u.value.b; in test_read_final()
123 size_t sz = op->params[0].u.value.c; in test_read_final()
136 static TEE_Result test_write_init(void *aux, struct tee_fs_rpc_operation *op, in test_write_init() argument
140 return test_read_init(aux, op, type, idx, vers, data); in test_write_init()
143 static TEE_Result test_write_final(struct tee_fs_rpc_operation *op) in test_write_final() argument
145 struct test_aux *a = uint_to_ptr(op->params[0].u.value.a); in test_write_final()
146 size_t offs = op->params[0].u.value.b; in test_write_final()
147 size_t sz = op->params[0].u.value.c; in test_write_final()