Home
last modified time | relevance | path

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

/trueos/sys/ia64/include/
HDproc.h45 struct syscall_args { struct
46 u_int code;
47 int narg;
48 struct sysent *callp;
49 register_t *args;
50 register_t args32[8];
/trueos/sys/powerpc/include/
HDproc.h69 struct syscall_args { struct
70 u_int code;
71 struct sysent *callp;
72 register_t args[10];
73 int narg;
/trueos/sys/arm/include/
HDproc.h71 struct syscall_args { struct
72 u_int code;
73 struct sysent *callp;
74 register_t args[MAXARGS];
75 int narg;
76 u_int nap;
78 u_int32_t insn;
/trueos/sys/sparc64/include/
HDproc.h69 struct syscall_args { struct
70 u_int code;
71 struct sysent *callp;
72 register_t args[8];
73 int narg;
/trueos/sys/amd64/include/
HDproc.h83 struct syscall_args { struct
84 u_int code;
85 struct sysent *callp;
86 register_t args[9];
87 int narg;
/trueos/sys/i386/include/
HDproc.h81 struct syscall_args { struct
82 u_int code;
83 struct sysent *callp;
84 register_t args[8];
85 int narg;
/trueos/sys/mips/include/
HDproc.h83 struct syscall_args { struct
84 u_int code;
85 struct sysent *callp;
86 register_t args[8];
87 int narg;
88 struct trapframe *trapframe;
/trueos/usr.bin/truss/
HDsyscall.h51 struct syscall_args { struct
61 struct syscall_args args[10]; argument
/trueos/sys/dev/hwpmc/
HDhwpmc_mod.c2794 pmc_syscall_handler(struct thread *td, void *syscall_args) in pmc_syscall_handler()