Searched refs:sy_call (Results 1 – 12 of 12) sorted by relevance
| /freebsd-9-stable/sys/dev/filemon/ |
| D | filemon_wrapper.c | 492 sv_table[SYS_chdir].sy_call = (sy_call_t *) filemon_wrapper_chdir; in filemon_wrapper_install() 493 sv_table[SYS_open].sy_call = (sy_call_t *) filemon_wrapper_open; in filemon_wrapper_install() 494 sv_table[SYS_openat].sy_call = (sy_call_t *) filemon_wrapper_openat; in filemon_wrapper_install() 495 sv_table[SYS_rename].sy_call = (sy_call_t *) filemon_wrapper_rename; in filemon_wrapper_install() 496 sv_table[SYS_stat].sy_call = (sy_call_t *) filemon_wrapper_stat; in filemon_wrapper_install() 497 sv_table[SYS_unlink].sy_call = (sy_call_t *) filemon_wrapper_unlink; in filemon_wrapper_install() 498 sv_table[SYS_link].sy_call = (sy_call_t *) filemon_wrapper_link; in filemon_wrapper_install() 499 sv_table[SYS_symlink].sy_call = (sy_call_t *) filemon_wrapper_symlink; in filemon_wrapper_install() 500 sv_table[SYS_linkat].sy_call = (sy_call_t *) filemon_wrapper_linkat; in filemon_wrapper_install() 505 sv_table[FREEBSD32_SYS_chdir].sy_call = (sy_call_t *) filemon_wrapper_chdir; in filemon_wrapper_install() [all …]
|
| /freebsd-9-stable/sys/sys/ |
| D | sysent.h | 58 sy_call_t *sy_call; /* implementing function */ member 210 (sysent[SYS_##syscallname].sy_call != (sy_call_t *)lkmnosys && \ 211 sysent[SYS_##syscallname].sy_call != (sy_call_t *)lkmressys) 226 .sy_call = (sy_call_t *)& sys_ ## syscallname, \ 235 .sy_call = (sy_call_t *)& syscallname, \
|
| /freebsd-9-stable/sys/kern/ |
| D | kern_syscalls.c | 114 if (sysent[i].sy_call == (sy_call_t *)lkmnosys) in syscall_register() 121 else if (sysent[*offset].sy_call != (sy_call_t *)lkmnosys && in syscall_register() 122 sysent[*offset].sy_call != (sy_call_t *)lkmressys) in syscall_register()
|
| D | subr_syscall.c | 142 error = (sa->callp->sy_call)(td, sa->args); in syscallenter()
|
| D | sysv_shm.c | 1098 return (sysent[SYS_shmat].sy_call(td, &ap)); in freebsd32_shmsys() 1104 return (sysent[SYS_shmdt].sy_call(td, &ap)); in freebsd32_shmsys() 1112 return (sysent[SYS_shmget].sy_call(td, &ap)); in freebsd32_shmsys()
|
| /freebsd-9-stable/sys/compat/freebsd32/ |
| D | freebsd32_util.h | 86 .sy_call = (sy_call_t *)& syscallname, \ 95 .sy_call = (sy_call_t *)& sys_ ## syscallname, \
|
| D | freebsd32_misc.c | 2676 if (freebsd32_sysent[i].sy_call == in syscall32_register() 2684 else if (freebsd32_sysent[*offset].sy_call != (sy_call_t *)lkmnosys && in syscall32_register() 2685 freebsd32_sysent[*offset].sy_call != (sy_call_t *)lkmressys) in syscall32_register()
|
| /freebsd-9-stable/sys/i386/ibcs2/ |
| D | ibcs2_isc.c | 62 error = (*callp->sy_call)(td, (void *)uap); in ibcs2_isc()
|
| D | ibcs2_xenix.c | 74 error = ((*callp->sy_call)(td, (void *)uap)); in ibcs2_xenix()
|
| /freebsd-9-stable/sys/sparc64/sparc64/ |
| D | db_trace.c | 184 func = (db_addr_t)p->p_sysent->sv_table[code].sy_call; in db_print_trap()
|
| /freebsd-9-stable/sys/amd64/amd64/ |
| D | db_trace.c | 162 f = p->p_sysent->sv_table[number].sy_call; in decode_syscall()
|
| /freebsd-9-stable/sys/i386/i386/ |
| D | db_trace.c | 254 f = p->p_sysent->sv_table[number].sy_call; in decode_syscall()
|