Symbol: execsw
sys/arch/sh3/sh3/coff_exec.c
57
static struct execsw exec_coff_execsw[] = {
sys/compat/aoutm68k/aoutm68k_mod.c
45
static struct execsw aoutm68k_execsw = {
sys/compat/freebsd/freebsd_mod.c
59
static struct execsw freebsd_execsw[] = {
sys/compat/linux/common/linux_mod.c
74
static struct execsw linux_execsw[] = {
sys/compat/linux32/common/linux32_mod.c
65
static struct execsw linux32_execsw[] = {
sys/compat/m68k4k/m68k4k_exec.c
64
static struct execsw exec_m68k4k_execsw = {
sys/compat/netbsd32/netbsd32_mod.c
98
static struct execsw netbsd32_execsw[] = {
sys/compat/sunos/sunos_mod.c
48
static struct execsw sunos_execsw = {
sys/compat/sunos32/sunos32_mod.c
51
static struct execsw sunos_execsw = {
sys/compat/ultrix/ultrix_mod.c
58
static struct execsw ultrix_execsw[] = {
sys/compat/vax1k/vax1k_exec.c
67
static struct execsw exec_vax1k_execsw = {
sys/kern/exec_aout.c
52
static struct execsw exec_aout_execsw = {
sys/kern/exec_ecoff.c
53
static struct execsw exec_ecoff_execsw = {
sys/kern/exec_elf32.c
48
static struct execsw exec_elf32_execsw[] = {
sys/kern/exec_elf64.c
48
static struct execsw exec_elf64_execsw[] = {
sys/kern/exec_script.c
66
static struct execsw exec_script_execsw = {
sys/kern/kern_exec.c
178
static const struct execsw **execsw = NULL;
sys/kern/kern_exec.c
1823
exec_add(struct execsw *esp, int count)
sys/kern/kern_exec.c
1880
exec_remove(struct execsw *esp, int count)
sys/kern/kern_exec.c
189
const struct execsw *ex_sw;
sys/kern/kern_exec.c
1935
const struct execsw **sw;
sys/kern/kern_exec.c
1983
sw = kmem_alloc(sz * sizeof(struct execsw *) + 1, KM_SLEEP);
sys/kern/kern_exec.c
1996
if (execsw != NULL) {
sys/kern/kern_exec.c
1997
kmem_free(__UNCONST(execsw),
sys/kern/kern_exec.c
1998
nexecs * sizeof(struct execsw *) + 1);
sys/kern/kern_exec.c
2000
execsw = sw;
sys/kern/kern_exec.c
2006
if (execsw[i]->es_hdrsz > exec_maxhdrsz)
sys/kern/kern_exec.c
2007
exec_maxhdrsz = execsw[i]->es_hdrsz;
sys/kern/kern_exec.c
475
epp->ep_esch = execsw[i];
sys/kern/kern_exec.c
476
newerror = (*execsw[i]->es_makecmds)(l, epp);
sys/sys/exec.h
216
const struct execsw *ep_esch;/* execsw entry */
sys/sys/exec.h
290
int exec_add(struct execsw *, int);
sys/sys/exec.h
291
int exec_remove(struct execsw *, int);
sys/sys/proc.h
305
const struct execsw *p_execsw; /* :: exec package information */