Symbol: sysent
share/examples/kld/syscall/module/syscall.c
53
static struct sysent hello_sysent = {
sys/cpu/x86_64/misc/elf_machdep.c
42
.sv_table = sysent,
sys/kern/init_main.c
342
.sv_table = sysent,
sys/kern/init_sysent.c
16
struct sysent sysent[] = {
sys/kern/kern_syscalls.c
50
syscall_register(int *offset, struct sysent *new_sysent,
sys/kern/kern_syscalls.c
51
struct sysent *old_sysent)
sys/kern/kern_syscalls.c
57
if (sysent[i].sy_call == (sy_call_t *)sys_lkmnosys)
sys/kern/kern_syscalls.c
64
else if (sysent[*offset].sy_call != (sy_call_t *)sys_lkmnosys)
sys/kern/kern_syscalls.c
67
*old_sysent = sysent[*offset];
sys/kern/kern_syscalls.c
68
sysent[*offset] = *new_sysent;
sys/kern/kern_syscalls.c
73
syscall_deregister(int *offset, struct sysent *old_sysent)
sys/kern/kern_syscalls.c
76
sysent[*offset] = *old_sysent;
sys/platform/pc64/x86_64/trap.c
1164
struct sysent *callp;
sys/platform/pc64/x86_64/trap.c
1390
struct sysent *callp;
sys/platform/vkernel64/x86_64/trap.c
1013
struct sysent *callp;
sys/platform/vkernel64/x86_64/trap.c
1219
struct sysent *callp;
sys/sys/sysent.h
110
static struct sysent syscallname##_sysent = { \
sys/sys/sysent.h
119
int syscall_register (int *offset, struct sysent *new_sysent,
sys/sys/sysent.h
120
struct sysent *old_sysent);
sys/sys/sysent.h
121
int syscall_deregister (int *offset, struct sysent *old_sysent);
sys/sys/sysent.h
58
struct sysent *sv_table; /* pointer to sysent */
sys/sys/sysent.h
82
extern struct sysent sysent[];
sys/sys/sysent.h
92
struct sysent *new_sysent; /* new sysent */
sys/sys/sysent.h
93
struct sysent old_sysent; /* old sysent */
sys/vfs/nfs/nfs_subs.c
605
nfs_prev_nfssvc_sy_narg = sysent[SYS_nfssvc].sy_narg;
sys/vfs/nfs/nfs_subs.c
606
sysent[SYS_nfssvc].sy_narg = 2;
sys/vfs/nfs/nfs_subs.c
608
nfs_prev_nfssvc_sy_call = sysent[SYS_nfssvc].sy_call;
sys/vfs/nfs/nfs_subs.c
609
sysent[SYS_nfssvc].sy_call = (sy_call_t *)sys_nfssvc;
sys/vfs/nfs/nfs_subs.c
621
sysent[SYS_nfssvc].sy_narg = nfs_prev_nfssvc_sy_narg;
sys/vfs/nfs/nfs_subs.c
622
sysent[SYS_nfssvc].sy_call = nfs_prev_nfssvc_sy_call;