Home
last modified time | relevance | path

Searched defs:syscall_args (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/sys/riscv/include/
H A Dproc.h49 struct syscall_args { struct
50 u_int code;
51 struct sysent *callp;
52 register_t args[MAXARGS];
53 int narg;
/freebsd-12.1/sys/powerpc/include/
H A Dproc.h58 struct syscall_args { struct
59 u_int code;
60 struct sysent *callp;
61 register_t args[10];
62 int narg;
/freebsd-12.1/sys/arm64/include/
H A Dproc.h50 struct syscall_args { struct
51 u_int code;
52 struct sysent *callp;
53 register_t args[MAXARGS];
54 int narg;
/freebsd-12.1/sys/sparc64/include/
H A Dproc.h58 struct syscall_args { struct
59 u_int code;
60 struct sysent *callp;
61 register_t args[8];
62 int narg;
/freebsd-12.1/sys/arm/include/
H A Dproc.h81 struct syscall_args { struct
82 u_int code;
83 struct sysent *callp;
84 register_t args[MAXARGS];
85 int narg;
86 u_int nap;
/freebsd-12.1/sys/i386/include/
H A Dproc.h65 struct syscall_args { struct
66 u_int code;
67 struct sysent *callp;
68 register_t args[8];
69 int narg;
/freebsd-12.1/sys/mips/include/
H A Dproc.h86 struct syscall_args { struct
87 u_int code;
88 struct sysent *callp;
89 register_t args[8];
90 int narg;
91 struct trapframe *trapframe;
/freebsd-12.1/sys/amd64/include/
H A Dproc.h87 struct syscall_args { struct
88 u_int code;
89 struct sysent *callp;
90 register_t args[8];
91 int narg;
/freebsd-12.1/usr.bin/truss/
H A Dsyscall.h210 struct syscall_args { struct
221 struct syscall_args args[10]; argument
/freebsd-12.1/sys/dev/hwpmc/
H A Dhwpmc_mod.c3374 pmc_syscall_handler(struct thread *td, void *syscall_args) in pmc_syscall_handler()