Home
last modified time | relevance | path

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

/optee_os/core/arch/riscv/kernel/
H A Dthread_optee_abi.c102 struct optee_msg_arg **rpc_arg) in get_msg_arg() argument
123 if (rpc_arg) { in get_msg_arg()
130 *rpc_arg = p; in get_msg_arg()
140 thr->rpc_arg = NULL; in clear_prealloc_rpc_cache()
145 struct optee_msg_arg *rpc_arg) in call_entry_std() argument
150 if (rpc_arg) { in call_entry_std()
163 thr->rpc_arg = rpc_arg; in call_entry_std()
172 if (rpc_arg) in call_entry_std()
173 thr->rpc_arg = NULL; in call_entry_std()
185 struct optee_msg_arg *rpc_arg = NULL; in std_entry_with_parg() local
[all …]
/optee_os/core/arch/arm/kernel/
H A Dthread_optee_smc.c101 struct optee_msg_arg **rpc_arg) in get_msg_arg() argument
122 if (rpc_arg) { in get_msg_arg()
129 *rpc_arg = p; in get_msg_arg()
139 thr->rpc_arg = NULL; in clear_prealloc_rpc_cache()
144 struct optee_msg_arg *rpc_arg) in call_entry_std() argument
149 if (rpc_arg) { in call_entry_std()
162 thr->rpc_arg = rpc_arg; in call_entry_std()
171 if (rpc_arg) in call_entry_std()
172 thr->rpc_arg = NULL; in call_entry_std()
184 struct optee_msg_arg *rpc_arg = NULL; in std_entry_with_parg() local
[all …]
H A Dthread_spmc.c2066 thr->rpc_arg = mobj_get_va(mobj, offset + sz, sz_rpc); in yielding_call_with_arg()
2067 if (!thr->rpc_arg) in yielding_call_with_arg()
2074 thr->rpc_arg = NULL; in yielding_call_with_arg()
2140 struct optee_msg_arg *arg = thr->rpc_arg; in get_rpc_arg()
2213 struct thread_rpc_arg rpc_arg = { .call = { in thread_rpc_cmd() local
2225 thread_rpc(&rpc_arg); in thread_rpc_cmd()
2232 struct thread_rpc_arg rpc_arg = { .call = { in thread_rpc_free() local
2251 thread_rpc(&rpc_arg); in thread_rpc_free()
2256 struct thread_rpc_arg rpc_arg = { .call = { in thread_rpc_alloc() local
2270 thread_rpc(&rpc_arg); in thread_rpc_alloc()
/optee_os/core/arch/arm/include/kernel/
H A Dthread_private_arch.h226 static inline void thread_rpc(struct thread_rpc_arg *rpc_arg) in thread_rpc() argument
228 __thread_rpc(rpc_arg->pad); in thread_rpc()
/optee_os/core/include/kernel/
H A Dthread_private.h51 void *rpc_arg; member