Searched refs:exec (Results 1 - 25 of 166) sorted by relevance

1234567

/freebsd-9.3-release/sys/pc98/include/
H A Dexec.h6 #include <i386/exec.h>
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Bin/
H A Dnewproc.d10 proc:::exec-success { trace(curpsinfo->pr_psargs); }
H A Dsar-c.d19 * exec/s execs
59 scall = 0; sread = 0; swrit = 0; fork = 0; exec = 0;
73 "exec/s", "rchar/s", "wchar/s");
85 sysinfo:::sysexec { exec++; }
96 walltimestamp, scall, sread, swrit, fork, exec, rchar, wchar);
99 scall = 0; sread = 0; swrit = 0; fork = 0; exec = 0;
H A Dpidpersec.d48 proc:::exec-success
H A Dwoof.d53 proc:::exec-success
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Proc/
H A Dnewproc.d10 proc:::exec-success { trace(curpsinfo->pr_psargs); }
H A Dpidpersec.d48 proc:::exec-success
/freebsd-9.3-release/contrib/binutils/bfd/
H A Dnetbsd.h37 #define N_MACHTYPE(exec) \
38 ((enum machine_type) (((exec).a_info >> 16) & 0x03ff))
39 #define N_FLAGS(exec) \
40 (((exec).a_info >> 26) & 0x3f)
42 #define N_SET_INFO(exec, magic, type, flags) \
43 ((exec).a_info = ((magic) & 0xffff) \
46 #define N_SET_MACHTYPE(exec, machtype) \
47 ((exec).a_info = \
48 ((exec).a_info & 0xfb00ffff) | ((((int) (machtype)) & 0x3ff) << 16))
49 #define N_SET_FLAGS(exec, flag
[all...]
H A Dfreebsd.h45 #define N_MACHTYPE(exec) \
47 ((freebsd_swap_magic(&(exec).a_info) >> 16) & 0x3ff))
48 #define N_FLAGS(exec) \
50 ((freebsd_swap_magic(&(exec).a_info) >> 26) & 0x3f))
52 #define N_SET_INFO(exec, magic, type, flags) \
53 ((exec).a_info = ((magic) & 0xffff) \
56 #define N_SET_MACHTYPE(exec, machtype) \
57 ((exec).a_info = \
58 ((exec).a_info & 0xfb00ffff) | ((((int) (machtype)) & 0x3ff) << 16))
59 #define N_SET_FLAGS(exec, flag
[all...]
H A Dcorefile.c135 char *exec; local
151 exec = bfd_get_filename (exec_bfd);
152 if (exec == NULL)
159 last_slash = strrchr (exec, '/');
161 exec = last_slash + 1;
163 return strcmp (exec, core) == 0;
H A Dlibaout.h172 /* zmagic files only. For go32, the length of the exec header contributes
216 /* This is the layout in memory of a "struct exec" while we process it.
297 #define N_DYNAMIC(exec) ((exec).a_info & 0x80000000)
300 # define N_MAGIC(exec) ((exec).a_info & 0xffff)
304 # define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff))
308 # define N_FLAGS(exec) (((exec)
[all...]
H A Dgen-aout.c32 struct exec my_exec;
41 if (fread(&my_exec, sizeof(struct exec), 1, file) != 1) {
H A Daout-target.h135 struct external_exec exec_bytes; /* Raw exec header from file. */
136 struct internal_exec exec; /* Cleaned-up exec header. */ local
148 exec.a_info = SWAP_MAGIC (exec_bytes.e_info);
150 exec.a_info = GET_MAGIC (abfd, exec_bytes.e_info);
153 if (N_BADMAG (exec))
157 if (!(MACHTYPE_OK (N_MACHTYPE (exec))))
161 NAME (aout, swap_exec_header_in) (abfd, &exec_bytes, &exec);
165 exec.a_info = SWAP_MAGIC (exec_bytes.e_info);
168 target = NAME (aout, some_aout_object_p) (abfd, &exec, M
[all...]
/freebsd-9.3-release/include/
H A Da.out.h37 #include <machine/exec.h>
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/System/
H A Dsar-c.d19 * exec/s execs
59 scall = 0; sread = 0; swrit = 0; fork = 0; exec = 0;
73 "exec/s", "rchar/s", "wchar/s");
85 sysinfo:::sysexec { exec++; }
96 walltimestamp, scall, sread, swrit, fork, exec, rchar, wchar);
99 scall = 0; sread = 0; swrit = 0; fork = 0; exec = 0;
/freebsd-9.3-release/contrib/binutils/gas/config/
H A Daout_gnu.h72 "struct exec". Don't assume that on this machine, the "struct exec"
87 /* How big the "struct exec" is on disk */
90 /* This is the layout in memory of a "struct exec" while we process it. */
92 struct exec struct
129 #define N_MAGIC(exec) ((exec).a_info & 0xffff)
130 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff))
131 #define N_FLAGS(exec) (((exe
[all...]
/freebsd-9.3-release/sys/sys/
H A Dexec.h34 * @(#)exec.h 8.3 (Berkeley) 1/21/94
69 #include <machine/exec.h>
92 struct execsw *exec = (struct execsw *)data; \
97 error = exec_register(exec); \
103 error = exec_unregister(exec); \
/freebsd-9.3-release/usr.sbin/kgzip/
H A Daouthdr.h35 struct exec a;
/freebsd-9.3-release/usr.sbin/pmcannotate/
H A Dpmcannotate.c676 char *bin, *exec, *kfile, *ofile; local
683 exec = argv[0];
703 usage(exec);
708 usage(exec);
713 FATAL(exec, "%s: Impossible to locate the binary file\n",
714 exec);
716 FATAL(exec, "%s: Impossible to locate the pmcstat file\n",
717 exec);
719 FATAL(exec, "%s: Impossible to locate the kernel file\n",
720 exec);
[all...]
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Misc/
H A Dwoof.d53 proc:::exec-success
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dfbsd-proc.c82 int read, write, exec; local
100 exec = (strchr (protection, 'x') != 0);
109 exec ? 'x' : '-');
113 func (start, size, read, write, exec, obfd);
/freebsd-9.3-release/sys/compat/ia32/
H A Dia32_util.h38 #include <sys/exec.h>
/freebsd-9.3-release/sys/boot/userboot/userboot/
H A Delf32_freebsd.c31 #include <sys/exec.h>
90 CALLBACK(exec, entry);
92 panic("exec returned");
/freebsd-9.3-release/sys/compat/svr4/
H A Dsvr4_util.h39 #include <sys/exec.h>
/freebsd-9.3-release/lib/libc/gen/
H A Dnlist.c116 struct exec * exec; local
119 /* check that file is at least as large as struct exec! */
120 if ((_fstat(fd, &st) < 0) || (st.st_size < sizeof(struct exec)))
144 exec = (struct exec *)a_out_mmap;
145 if (N_BADMAG(*exec)) {
150 symoff = N_SYMOFF(*exec);
151 symsize = exec->a_syms;

Completed in 224 milliseconds

1234567