Home
last modified time | relevance | path

Searched refs:syscall_t (Results 1 – 2 of 2) sorted by relevance

/optee_os/core/kernel/
H A Dscall.c33 syscall_t fn;
40 #define SYSCALL_ENTRY(_fn) { .fn = (syscall_t)_fn, .name = #_fn }
42 #define SYSCALL_ENTRY(_fn) { .fn = (syscall_t)_fn }
192 static syscall_t get_tee_syscall_func(size_t num) in get_tee_syscall_func()
200 return (syscall_t)syscall_not_supported; in get_tee_syscall_func()
210 syscall_t scf = NULL; in scall_handle_user_ta()
238 static syscall_t get_ldelf_syscall_func(size_t num) in get_ldelf_syscall_func()
247 return (syscall_t)syscall_not_supported; in get_ldelf_syscall_func()
257 syscall_t scf = NULL; in scall_handle_ldelf()
/optee_os/core/include/kernel/
H A Dscall.h15 typedef void (*syscall_t)(void); typedef
20 uint32_t scall_do_call(struct thread_scall_regs *regs, syscall_t func);