/src/sys/sys/ |
syscallvar.h | 85 || (error = trace_enter(code, sy, uap)) == 0) {
|
systm.h | 618 int trace_enter(register_t, const struct sysent *, const void *);
|
/src/sys/arch/amd64/amd64/ |
linux_syscall.c | 99 && (error = trace_enter(code, callp, args)) != 0)
|
linux32_syscall.c | 71 if ((error = trace_enter(code, callp, args64)) != 0)
|
netbsd32_syscall.c | 98 error = trace_enter(code, callp, args64);
|
/src/sys/kern/ |
sys_syscall.c | 101 error = trace_enter(code, callp, TRACE_ARGS);
|
kern_syscall.c | 236 trace_enter(register_t code, const struct sysent *sy, const void *args) function in typeref:typename:int
|
/src/sys/arch/i386/i386/ |
linux_syscall.c | 99 error = trace_enter(code, callp, args);
|
/src/sys/compat/freebsd/ |
freebsd_syscall.c | 121 || (error = trace_enter(code, callp, args)) == 0) {
|
/src/sys/arch/arm/arm/ |
linux_syscall.c | 185 if ((error = trace_enter(code, callp, args)) != 0)
|
/src/sys/arch/m68k/m68k/ |
linux_syscall.c | 219 if ((error = trace_enter(code, callp, args)) != 0)
|
sunos_syscall.c | 284 if ((error = trace_enter(code, callp, args)) != 0)
|
m68k_syscall.c | 349 if ((error = trace_enter(code, callp, args)) != 0)
|
/src/sys/arch/alpha/alpha/ |
linux_syscall.c | 281 if ((error = trace_enter(code, callp, args)) != 0)
|
/src/sys/arch/aarch64/aarch64/ |
aarch32_syscall.c | 165 * XXX: trace_enter()/trace_exit() called from sy_invoke() expects 167 * therefore call trace_enter(), sy_call(), trace_exit() manually. 179 /* build 64bit args for trace_enter()/trace_exit() */ 186 error = trace_enter(code, callp, args64buf.a64);
|