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

12345678

/freebsd-11-stable/sys/pc98/include/
H A Dexec.h6 #include <i386/exec.h>
/freebsd-11-stable/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-11-stable/include/
H A Da.out.h37 #include <machine/exec.h>
/freebsd-11-stable/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-11-stable/sys/sys/
H A Dexec.h34 * @(#)exec.h 8.3 (Berkeley) 1/21/94
68 #include <machine/exec.h>
101 struct execsw *exec = (struct execsw *)data; \
106 error = exec_register(exec); \
112 error = exec_unregister(exec); \
/freebsd-11-stable/usr.sbin/kgzip/
H A Daouthdr.h37 struct exec a;
/freebsd-11-stable/contrib/atf/atf-c++/detail/
H A Dprocess.hpp114 status exec(const atf::fs::path&, const argv_array&,
126 status exec(const atf::fs::path&, const argv_array&,
138 status exec(const atf::fs::path&, const argv_array&,
150 status exec(const atf::fs::path&, const argv_array&,
162 status exec(const atf::fs::path&, const argv_array&,
178 status exec(const atf::fs::path&, const argv_array&,
245 exec(const atf::fs::path& prog, const argv_array& argv, function in namespace:atf::process
265 exec(const atf::fs::path& prog, const argv_array& argv, function in namespace:atf::process
268 return exec(prog, argv, outsb, errsb, NULL);
/freebsd-11-stable/usr.sbin/pmcannotate/
H A Dpmcannotate.c677 char *bin, *exec, *kfile, *ofile; local
684 exec = argv[0];
704 usage(exec);
709 usage(exec);
714 FATAL(exec, "%s: Impossible to locate the binary file\n",
715 exec);
717 FATAL(exec, "%s: Impossible to locate the pmcstat file\n",
718 exec);
720 FATAL(exec, "%s: Impossible to locate the kernel file\n",
721 exec);
[all...]
/freebsd-11-stable/contrib/atf/atf-c++/
H A Dcheck.hpp74 friend std::auto_ptr< check_result > exec(const atf::process::argv_array&);
123 std::auto_ptr< check_result > exec(const atf::process::argv_array&);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_suppressions.cpp37 InternalScopedString exec(kMaxPathLength);
38 if (ReadBinaryNameCached(exec.data(), exec.size())) {
39 const char *file_name_pos = StripModuleName(exec.data());
40 uptr path_to_exec_len = file_name_pos - exec.data();
41 internal_strncat(new_file_path, exec.data(),
/freebsd-11-stable/contrib/netbsd-tests/kernel/
H A Dh_ps_strings2.c35 #include <sys/exec.h>
H A Dh_ps_strings1.c35 #include <sys/exec.h>
/freebsd-11-stable/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-11-stable/sys/compat/ia32/
H A Dia32_util.h38 #include <sys/exec.h>
/freebsd-11-stable/sys/dev/drm2/i915/
H A Di915_gem_execbuffer.c515 struct drm_i915_gem_exec_object2 *exec,
536 total += exec[i].relocation_count;
553 user_relocs = (void __user *)(uintptr_t)exec[i].relocs_ptr;
556 exec[i].relocation_count * sizeof(*reloc))) {
571 for (j = 0; j < exec[i].relocation_count; j++) {
582 total += exec[i].relocation_count;
595 exec[i].handle));
598 exec[i].handle, i);
604 obj->exec_handle = exec[i].handle;
605 obj->exec_entry = &exec[
510 i915_gem_execbuffer_relocate_slow(struct drm_device *dev, struct drm_file *file, struct intel_ring_buffer *ring, struct list_head *objects, struct eb_objects *eb, struct drm_i915_gem_exec_object2 *exec, int count) argument
707 i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec) argument
713 validate_exec_list(struct drm_i915_gem_exec_object2 *exec, int count, vm_page_t ***map, int **maplen) argument
836 i915_gem_do_execbuffer(struct drm_device *dev, void *data, struct drm_file *file, struct drm_i915_gem_execbuffer2 *args, struct drm_i915_gem_exec_object2 *exec) argument
[all...]
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_util.h38 #include <sys/exec.h>
/freebsd-11-stable/lib/libc/gen/
H A Dnlist.c115 struct exec * exec; local
118 /* check that file is at least as large as struct exec! */
119 if ((_fstat(fd, &st) < 0) || (st.st_size < sizeof(struct exec)))
143 exec = (struct exec *)a_out_mmap;
144 if (N_BADMAG(*exec)) {
149 symoff = N_SYMOFF(*exec);
150 symsize = exec->a_syms;
/freebsd-11-stable/stand/userboot/userboot/
H A Delf32_freebsd.c31 #include <sys/exec.h>
105 CALLBACK(exec, entry);
107 panic("exec returned");
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/regex/
H A Dt_regex_att.c260 geterror(const char *s, int *comp, int *exec) argument
291 *exec = 0;
297 *exec = nv[i].v;
484 int comp, exec; local
486 geterror(matches, &comp, &exec);
490 comp = exec = 0;
521 ATF_REQUIRE_MSG(e == exec, "Expected error %d,"
522 " got %d at line %zu", exec, e, lineno);
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_work.c94 struct work_exec *exec; local
102 TAILQ_FOREACH(exec, &wq->exec_head, entry) {
103 if (exec->target == work) {
104 exec->target = NULL;
222 struct work_exec exec; local
232 exec.target = work;
236 TAILQ_INSERT_TAIL(&wq->exec_head, &exec, entry);
255 if (exec.target != work) {
257 exec.target = work;
267 TAILQ_REMOVE(&wq->exec_head, &exec, entr
[all...]

Completed in 261 milliseconds

12345678