tag | line | file | source code |
exec | 21 | arch/i386/boot/compressed/piggyback.c | struct exec obj = {0x00640107}; /* object header */ |
exec | 22 | arch/i386/boot/compressed/xtract.c | static int GCC_HEADER = sizeof(struct exec); |
exec | 44 | arch/i386/boot/compressed/xtract.c | struct exec *ex = (struct exec *)buf; |
exec | 40 | arch/i386/boot/tools/build.c | static int GCC_HEADER = sizeof(struct exec); |
exec | 101 | arch/i386/boot/tools/build.c | struct exec *ex = (struct exec *)buf; |
exec | 223 | fs/binfmt_aout.c | put_user(bprm->exec, --sp); |
exec | 259 | fs/binfmt_aout.c | struct exec ex; |
exec | 267 | fs/binfmt_aout.c | ex = *((struct exec *) bprm->buf); /* exec-header */ |
exec | 412 | fs/binfmt_aout.c | struct exec ex; |
exec | 93 | fs/binfmt_elf.c | unsigned long * create_elf_tables(char * p,int argc,int envc,struct elfhdr * exec, unsigned int load_addr, unsigned int interp_load_addr, int ibcs) |
exec | 99 | fs/binfmt_elf.c | sp -= exec ? DLINFO_ITEMS*2 : 2; |
exec | 113 | fs/binfmt_elf.c | if(exec) { /* Put this here for an ELF program interpreter */ |
exec | 115 | fs/binfmt_elf.c | eppnt = (struct elf_phdr *) exec->e_phoff; |
exec | 117 | fs/binfmt_elf.c | NEW_AUX_ENT (AT_PHDR, load_addr + exec->e_phoff); |
exec | 119 | fs/binfmt_elf.c | NEW_AUX_ENT (AT_PHNUM, exec->e_phnum); |
exec | 123 | fs/binfmt_elf.c | NEW_AUX_ENT (AT_ENTRY, (unsigned long) exec->e_entry); |
exec | 284 | fs/binfmt_elf.c | static unsigned int load_aout_interp(struct exec * interp_ex, |
exec | 338 | fs/binfmt_elf.c | struct exec interp_ex; |
exec | 457 | fs/binfmt_elf.c | interp_ex = *((struct exec *) bprm->buf); /* exec-header */ |
exec | 292 | fs/exec.c | bprm->exec += stack_base; |
exec | 508 | fs/exec.c | struct exec * eh = (struct exec *) bprm->buf; |
exec | 588 | fs/exec.c | bprm.exec = 0; |
exec | 599 | fs/exec.c | bprm.exec = bprm.p; |
exec | 552 | fs/proc/array.c | unsigned long exec = 0, lib = 0; |
exec | 565 | fs/proc/array.c | exec += len; |
exec | 583 | fs/proc/array.c | exec - lib, lib); |
exec | 89 | include/asm-alpha/a.out.h | (sizeof(struct exec) + (x).fh.f_nscns*SCNHSZ + SCNROUND - 1) & ~(SCNROUND - 1)) |
exec | 23 | include/asm-sparc/a.out.h | #define N_TXTOFF(x) (N_MAGIC(x) == ZMAGIC ? 0 : sizeof (struct exec)) |
exec | 73 | include/asm-sparc/processor.h | struct exec core_exec; /* just what it says. */ |
exec | 40 | include/asm-sparc/user.h | struct exec uexec; |
exec | 41 | include/linux/a.out.h | #define N_MAGIC(exec) ((exec).a_info & 0xffff) |
exec | 43 | include/linux/a.out.h | #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff)) |
exec | 44 | include/linux/a.out.h | #define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff) |
exec | 45 | include/linux/a.out.h | #define N_SET_INFO(exec, magic, type, flags) \ |
exec | 46 | include/linux/a.out.h | ((exec).a_info = ((magic) & 0xffff) \ |
exec | 49 | include/linux/a.out.h | #define N_SET_MAGIC(exec, magic) \ |
exec | 50 | include/linux/a.out.h | ((exec).a_info = (((exec).a_info & 0xffff0000) | ((magic) & 0xffff))) |
exec | 52 | include/linux/a.out.h | #define N_SET_MACHTYPE(exec, machtype) \ |
exec | 53 | include/linux/a.out.h | ((exec).a_info = \ |
exec | 54 | include/linux/a.out.h | ((exec).a_info&0xff00ffff) | ((((int)(machtype))&0xff) << 16)) |
exec | 56 | include/linux/a.out.h | #define N_SET_FLAGS(exec, flags) \ |
exec | 57 | include/linux/a.out.h | ((exec).a_info = \ |
exec | 58 | include/linux/a.out.h | ((exec).a_info&0x00ffffff) | (((flags) & 0xff) << 24)) |
exec | 80 | include/linux/a.out.h | #define _N_HDROFF(x) (1024 - sizeof (struct exec)) |
exec | 84 | include/linux/a.out.h | (N_MAGIC(x) == ZMAGIC ? _N_HDROFF((x)) + sizeof (struct exec) : \ |
exec | 85 | include/linux/a.out.h | (N_MAGIC(x) == QMAGIC ? 0 : sizeof (struct exec))) |
exec | 25 | include/linux/binfmts.h | unsigned long loader, exec; |