Home
last modified time | relevance | path

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

/freebsd-13.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];
/freebsd-13.1/sys/powerpc/include/
H A Dproc.h63 struct syscall_args { struct
64 u_int code;
65 struct sysent *callp;
66 register_t args[MAXARGS];
/freebsd-13.1/sys/arm64/include/
H A Dproc.h51 struct syscall_args { struct
52 u_int code;
53 struct sysent *callp;
54 register_t args[MAXARGS];
/freebsd-13.1/sys/arm/include/
H A Dproc.h68 struct syscall_args { struct
69 u_int code;
70 struct sysent *callp;
71 register_t args[MAXARGS];
/freebsd-13.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];
/freebsd-13.1/sys/mips/include/
H A Dproc.h85 struct syscall_args { struct
86 u_int code;
87 struct sysent *callp;
88 register_t args[MAXARGS];
/freebsd-13.1/sys/amd64/include/
H A Dproc.h94 struct syscall_args { struct
95 u_int code;
96 struct sysent *callp;
97 register_t args[8];
/freebsd-13.1/sys/dev/hwpmc/
H A Dhwpmc_mod.c3377 pmc_syscall_handler(struct thread *td, void *syscall_args) in pmc_syscall_handler()