Home
last modified time | relevance | path

Searched refs:exec (Results 1 – 25 of 101) sorted by relevance

12345

/original-bsd/lib/libc/gen/
H A Dnlist.c52 struct exec exec; local
56 read(fd, &exec, sizeof(exec)) != sizeof(exec) ||
57 N_BADMAG(exec) || fstat(fd, &st) < 0)
60 symoff = N_SYMOFF(exec);
61 symsize = exec.a_syms;
/original-bsd/lib/libc/mips/gen/
H A Dnlist.c52 struct exec exec; local
56 read(fd, &exec, sizeof(exec)) != sizeof(exec) ||
57 N_BADMAG(exec) || fstat(fd, &st) < 0)
60 symoff = N_SYMOFF(exec);
61 symsize = exec.a_syms;
/original-bsd/old/symorder/
H A Dsymorder.c40 struct exec exec; variable
97 if ((fread(&exec, sizeof(exec), 1, f)) != 1)
99 if (N_BADMAG(exec))
101 if (exec.a_syms == 0)
104 if (stb.st_size < N_STROFF(exec) + sizeof(off_t))
108 sa = N_SYMOFF(exec);
110 n = exec.a_syms;
160 exec.a_syms = n;
161 if (write(o, (void *)&exec, sizeof(exec)) != sizeof(exec))
/original-bsd/usr.bin/pascal/src/
H A Dyymain.c134 struct exec magichdr;
144 if (hf >= 0 && read(hf, (char *) buf, HEADER_BYTES) > sizeof(struct exec)) { in magic()
169 magichdr.a_data -= sizeof (struct exec); in magic2()
177 write(ofil, (char *) (&magichdr), sizeof(struct exec)); in magic2()
/original-bsd/usr.bin/gcore/
H A Dgcore.c68 struct exec exec; local
128 cnt = read(efd, &exec, sizeof(exec));
129 if (cnt != sizeof(exec))
133 data_offset = N_DATOFF(exec);
/original-bsd/sys/vax/include/
H A Dexec.h28 ((ex).a_magic == ZMAGIC ? __LDPGSZ : sizeof(struct exec))
44 struct exec { struct
/original-bsd/sys/i386/include/
H A Dexec.h28 ((ex).a_magic == ZMAGIC ? __LDPGSZ : sizeof(struct exec))
44 struct exec { struct
/original-bsd/sys/luna68k/stand/
H A Dboot.c33 struct exec header;
197 i = read(io, (char *)&header, sizeof(struct exec));
198 if (i != sizeof(struct exec) ||
289 i = tread(/*io,*/ (char *)&header, sizeof(struct exec)); in stcopyunix()
290 if (i != sizeof(struct exec) || in stcopyunix()
/original-bsd/sys/sparc/include/
H A Dexec.h58 #define N_TXTOFF(ex) ((ex).a_magic == ZMAGIC ? 0 : sizeof(struct exec))
74 struct exec { struct
/original-bsd/sys/pmax/ultrix/
H A Dexec.h45 ((ex).ex_aout.magic == ZMAGIC ? 0 : (sizeof(struct exec) + \
113 struct exec { struct
/original-bsd/sys/hp300/include/
H A Dexec.h28 ((ex).a_magic == ZMAGIC ? __LDPGSZ : sizeof(struct exec))
44 struct exec { struct
/original-bsd/sys/pmax/include/
H A Dexec.h30 ((ex).a_magic == ZMAGIC ? 0 : sizeof(struct exec))
46 struct exec { struct
/original-bsd/sys/news3400/include/
H A Dexec.h45 ((ex).ex_aout.magic == ZMAGIC ? 0 : (sizeof(struct exec) + \
117 struct exec { struct
/original-bsd/usr.sbin/kvm_mkdb/
H A Dnlist.c44 struct exec ebuf;
56 nr = read(fd, &ebuf, sizeof(struct exec));
57 if (nr != sizeof(struct exec))
/original-bsd/usr.bin/f77/pass1.tahoe/
H A Dgram.exec7 * @(#)gram.exec 5.3 (Berkeley) 04/12/91
11 * gram.exec
17 * $Log: gram.exec,v $
31 exec: iffable
/original-bsd/bin/test/
H A Dmkops13 exec > operators.h
28 exec > operators.c
/original-bsd/usr.bin/f77/pass1.vax/
H A Dgram.exec7 * @(#)gram.exec 5.3 (Berkeley) 04/12/91
11 * gram.exec
17 * $Log: gram.exec,v $
39 exec: iffable
/original-bsd/usr.bin/uucp/UUAIDS/
H A Duu.daily.seismo35 find . -type f -mtime +7 -exec rm -f {} \;
38 find . -type f -mtime +30 -exec rm -f {} \;
/original-bsd/usr.bin/ranlib/
H A Dbuild.c105 struct exec ebuf;
116 nr = read(rfd, &ebuf, sizeof(struct exec));
117 if (nr != sizeof(struct exec))
/original-bsd/bin/sh/funcs/
H A Dnewgrp11 newgrp() exec newgrp "$@"
H A Dlogin12 login () exec login "$@"
/original-bsd/old/adb/adb.vax/
H A Dhead.h10 struct exec filhdr;
/original-bsd/old/adb/adb.tahoe/
H A Dhead.h10 struct exec filhdr;
/original-bsd/sys/tahoe/stand/vdformat/
H A Dstatus.c33 case exec : in status()
H A Dexercise.c34 cur.state = exec; in exercise()

12345