| /NextBSD/contrib/binutils/gas/config/ |
| HD | aout_gnu.h | 92 struct exec struct 129 #define N_MAGIC(exec) ((exec).a_info & 0xffff) argument 130 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff)) argument 131 #define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff) argument 132 #define N_SET_INFO(exec, magic, type, flags) \ argument 133 ((exec).a_info = ((magic) & 0xffff) \ 136 #define N_SET_MAGIC(exec, magic) \ argument 137 ((exec).a_info = (((exec).a_info & 0xffff0000) | ((magic) & 0xffff))) 139 #define N_SET_MACHTYPE(exec, machtype) \ argument 140 ((exec).a_info = \ [all …]
|
| /NextBSD/contrib/binutils/bfd/ |
| HD | netbsd.h | 37 #define N_MACHTYPE(exec) \ argument 38 ((enum machine_type) (((exec).a_info >> 16) & 0x03ff)) 39 #define N_FLAGS(exec) \ argument 40 (((exec).a_info >> 26) & 0x3f) 42 #define N_SET_INFO(exec, magic, type, flags) \ argument 43 ((exec).a_info = ((magic) & 0xffff) \ 46 #define N_SET_MACHTYPE(exec, machtype) \ argument 47 ((exec).a_info = \ 48 ((exec).a_info & 0xfb00ffff) | ((((int) (machtype)) & 0x3ff) << 16)) 49 #define N_SET_FLAGS(exec, flags) \ argument [all …]
|
| HD | freebsd.h | 45 #define N_MACHTYPE(exec) \ argument 47 ((freebsd_swap_magic(&(exec).a_info) >> 16) & 0x3ff)) 48 #define N_FLAGS(exec) \ argument 50 ((freebsd_swap_magic(&(exec).a_info) >> 26) & 0x3f)) 52 #define N_SET_INFO(exec, magic, type, flags) \ argument 53 ((exec).a_info = ((magic) & 0xffff) \ 56 #define N_SET_MACHTYPE(exec, machtype) \ argument 57 ((exec).a_info = \ 58 ((exec).a_info & 0xfb00ffff) | ((((int) (machtype)) & 0x3ff) << 16)) 59 #define N_SET_FLAGS(exec, flags) \ argument [all …]
|
| HD | libaout.h | 295 #define N_DYNAMIC(exec) ((exec).a_info & 0x80000000) argument 298 # define N_MAGIC(exec) ((exec).a_info & 0xffff) argument 302 # define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff)) argument 306 # define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff) argument 310 # define N_SET_INFO(exec, magic, type, flags) \ argument 311 ((exec).a_info = ((magic) & 0xffff) \ 317 # define N_SET_DYNAMIC(exec, dynamic) \ argument 318 ((exec).a_info = (dynamic) ? (long) ((exec).a_info | 0x80000000) : \ 319 ((exec).a_info & 0x7fffffff)) 323 # define N_SET_MAGIC(exec, magic) \ argument [all …]
|
| HD | corefile.c | 135 char *exec; in generic_core_file_matches_executable_p() local 151 exec = bfd_get_filename (exec_bfd); in generic_core_file_matches_executable_p() 152 if (exec == NULL) in generic_core_file_matches_executable_p() 159 last_slash = strrchr (exec, '/'); in generic_core_file_matches_executable_p() 161 exec = last_slash + 1; in generic_core_file_matches_executable_p() 163 return strcmp (exec, core) == 0; in generic_core_file_matches_executable_p()
|
| HD | aout-target.h | 136 struct internal_exec exec; /* Cleaned-up exec header. */ in MY() local 148 exec.a_info = SWAP_MAGIC (exec_bytes.e_info); in MY() 150 exec.a_info = GET_MAGIC (abfd, exec_bytes.e_info); in MY() 153 if (N_BADMAG (exec)) in MY() 157 if (!(MACHTYPE_OK (N_MACHTYPE (exec)))) in MY() 161 NAME (aout, swap_exec_header_in) (abfd, &exec_bytes, &exec); in MY() 165 exec.a_info = SWAP_MAGIC (exec_bytes.e_info); in MY() 168 target = NAME (aout, some_aout_object_p) (abfd, &exec, MY (callback)); in MY() 177 if (exec.a_trsize + exec.a_drsize == 0 in MY()
|
| /NextBSD/usr.sbin/pmcannotate/ |
| HD | pmcannotate.c | 675 char *bin, *exec, *kfile, *ofile; in main() local 682 exec = argv[0]; in main() 702 usage(exec); in main() 707 usage(exec); in main() 712 FATAL(exec, "%s: Impossible to locate the binary file\n", in main() 713 exec); in main() 715 FATAL(exec, "%s: Impossible to locate the pmcstat file\n", in main() 716 exec); in main() 718 FATAL(exec, "%s: Impossible to locate the kernel file\n", in main() 719 exec); in main() [all …]
|
| /NextBSD/cddl/contrib/dtracetoolkit/Examples/ |
| HD | newproc_example.txt | 4 dtrace: description 'proc:::exec-success ' matched 1 probe 6 0 3297 exec_common:exec-success man ls 7 …0 3297 exec_common:exec-success sh -c cd /usr/share/man; tbl /usr/share/man/man1/ls.1 … 8 0 3297 exec_common:exec-success tbl /usr/share/man/man1/ls.1 9 0 3297 exec_common:exec-success neqn /usr/share/lib/pub/eqnchar - 10 0 3297 exec_common:exec-success nroff -u0 -Tlp -man - 11 0 3297 exec_common:exec-success col -x 12 …0 3297 exec_common:exec-success sh -c trap '' 1 15; /usr/bin/mv -f/tmp/mpzIaOZF /usr/s… 13 … 0 3297 exec_common:exec-success /usr/bin/mv -f /tmp/mpzIaOZF /usr/share/man/cat1/ls.1 14 0 3297 exec_common:exec-success sh -c more -s /tmp/mpzIaOZF [all …]
|
| HD | oneliners_examples.txt | 7 # dtrace -n 'proc:::exec-success { trace(curpsinfo->pr_psargs); }' 8 dtrace: description 'proc:::exec-success ' matched 1 probe 10 0 3297 exec_common:exec-success man ls 11 …0 3297 exec_common:exec-success sh -c cd /usr/share/man; tbl /usr/share/man/man1/ls.1 … 12 0 3297 exec_common:exec-success tbl /usr/share/man/man1/ls.1 13 0 3297 exec_common:exec-success neqn /usr/share/lib/pub/eqnchar - 14 0 3297 exec_common:exec-success nroff -u0 -Tlp -man - 15 0 3297 exec_common:exec-success col -x 16 …0 3297 exec_common:exec-success sh -c trap '' 1 15; /usr/bin/mv -f /tmp/mpzIaOZF /usr/… 17 0 3297 exec_common:exec-success /usr/bin/mv -f /tmp/mpzIaOZF /usr/share/man/cat1/ls.1 [all …]
|
| /NextBSD/contrib/atf/atf-c++/detail/ |
| D | process.hpp | 114 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, in exec() function 265 exec(const atf::fs::path& prog, const argv_array& argv, in exec() function 268 return exec(prog, argv, outsb, errsb, NULL); in exec()
|
| /NextBSD/usr.sbin/apmd/ |
| HD | README | 90 exec "sync && sync && sync"; 91 exec "sleep 1"; 92 exec "zzz"; 133 In the example above, the three lines beginning with `exec' are commands 164 exec "/etc/rc.suspend"; 168 exec "sync && sync && sync"; 169 exec "sleep 1"; 170 exec "apm -z"; 174 exec "/etc/rc.resume"; 181 # exec "kill -HUP `cat /var/run/moused.pid`"; [all …]
|
| /NextBSD/contrib/file/magic/Magdir/ |
| HD | perl | 8 0 search/1024 eval\ "exec\ perl Perl script text 10 0 search/1024 eval\ "exec\ /bin/perl Perl script text 12 0 search/1024 eval\ "exec\ /usr/bin/perl Perl script text 14 0 search/1024 eval\ "exec\ /usr/local/bin/perl Perl script text 16 0 search/1024 eval\ 'exec\ perl Perl script text 18 0 search/1024 eval\ 'exec\ /bin/perl Perl script text 20 0 search/1024 eval\ 'exec\ /usr/bin/perl Perl script text 22 0 search/1024 eval\ 'exec\ /usr/local/bin/perl Perl script text 24 0 search/1024 eval\ '(exit\ $?0)'\ &&\ eval\ 'exec Perl script text
|
| /NextBSD/bin/sh/tests/execution/ |
| HD | redir2.0 | 13 exec ${SH} -c 'exec <fifo1; read dummy' 18 exec 4>fifo2 19 exec 3>fifo1
|
| /NextBSD/cddl/contrib/dtracetoolkit/Bin/ |
| D | sar-c.d | 59 scall = 0; sread = 0; swrit = 0; fork = 0; exec = 0; 85 sysinfo:::sysexec { exec++; } 96 walltimestamp, scall, sread, swrit, fork, exec, rchar, wchar); 99 scall = 0; sread = 0; swrit = 0; fork = 0; exec = 0;
|
| /NextBSD/cddl/contrib/dtracetoolkit/System/ |
| HD | sar-c.d | 59 scall = 0; sread = 0; swrit = 0; fork = 0; exec = 0; 85 sysinfo:::sysexec { exec++; } 96 walltimestamp, scall, sread, swrit, fork, exec, rchar, wchar); 99 scall = 0; sread = 0; swrit = 0; fork = 0; exec = 0;
|
| /NextBSD/contrib/compiler-rt/lib/sanitizer_common/ |
| HD | sanitizer_suppressions.cc | 36 InternalScopedString exec(kMaxPathLength); in GetPathAssumingFileIsRelativeToExec() local 37 if (ReadBinaryNameCached(exec.data(), exec.size())) { in GetPathAssumingFileIsRelativeToExec() 38 const char *file_name_pos = StripModuleName(exec.data()); in GetPathAssumingFileIsRelativeToExec() 39 uptr path_to_exec_len = file_name_pos - exec.data(); in GetPathAssumingFileIsRelativeToExec() 40 internal_strncat(new_file_path, exec.data(), in GetPathAssumingFileIsRelativeToExec()
|
| /NextBSD/sys/dev/drm2/i915/ |
| HD | i915_gem_execbuffer.c | 743 struct drm_i915_gem_exec_object2 *exec, in i915_gem_execbuffer_relocate_slow() argument 764 total += exec[i].relocation_count; in i915_gem_execbuffer_relocate_slow() 774 user_relocs = (void *)(uintptr_t)exec[i].relocs_ptr; in i915_gem_execbuffer_relocate_slow() 776 exec[i].relocation_count * sizeof(*reloc)); in i915_gem_execbuffer_relocate_slow() 783 total += exec[i].relocation_count; in i915_gem_execbuffer_relocate_slow() 798 exec[i].handle)); in i915_gem_execbuffer_relocate_slow() 801 exec[i].handle, i); in i915_gem_execbuffer_relocate_slow() 807 obj->exec_handle = exec[i].handle; in i915_gem_execbuffer_relocate_slow() 808 obj->exec_entry = &exec[i]; in i915_gem_execbuffer_relocate_slow() 817 int offset = obj->exec_entry - exec; in i915_gem_execbuffer_relocate_slow() [all …]
|
| /NextBSD/libexec/pppoed/ |
| HD | pppoed.c | 254 const char *exec, struct ngm_connect ngc, int cs, int ds, void *request, in Spawn() argument 444 syslog(LOG_INFO, "Executing: %s", exec); in Spawn() 445 execlp(_PATH_BSHELL, _PATH_BSHELL, "-c", exec, (char *)NULL); in Spawn() 500 char hostname[MAXHOSTNAMELEN], *exec, rhook[NG_HOOKSIZ]; in main() local 511 exec = NULL; in main() 536 exec = optarg; in main() 560 if (exec != NULL && label != NULL) in main() 563 if (exec == NULL) { in main() 571 exec = (char *)alloca(sizeof DEFAULT_EXEC_PREFIX + strlen(label)); in main() 572 if (exec == NULL) { in main() [all …]
|
| /NextBSD/lib/libc/gen/ |
| HD | nlist.c | 115 struct exec * exec; in __aout_fdnlist() local 119 if ((_fstat(fd, &st) < 0) || (st.st_size < sizeof(struct exec))) in __aout_fdnlist() 143 exec = (struct exec *)a_out_mmap; in __aout_fdnlist() 144 if (N_BADMAG(*exec)) { in __aout_fdnlist() 149 symoff = N_SYMOFF(*exec); in __aout_fdnlist() 150 symsize = exec->a_syms; in __aout_fdnlist()
|
| /NextBSD/bin/sh/tests/builtins/ |
| HD | exec2.0 | 10 exec -- >/dev/null 15 exec -- ${SH} -c 'exit 42' 20 exec -- /var/empty/nosuch
|
| HD | exec1.0 | 10 exec >/dev/null 15 exec ${SH} -c 'exit 42' 20 exec /var/empty/nosuch
|
| /NextBSD/contrib/netbsd-tests/lib/libc/regex/ |
| HD | t_regex_att.c | 262 geterror(const char *s, int *comp, int *exec) in geterror() argument 293 *exec = 0; in geterror() 299 *exec = nv[i].v; in geterror() 490 int comp, exec; in att_test() local 492 geterror(matches, &comp, &exec); in att_test() 496 comp = exec = 0; in att_test() 527 ATF_REQUIRE_MSG(e == exec, "Expected error %d," in att_test() 528 " got %d at line %zu", exec, e, lineno); in att_test()
|
| /NextBSD/contrib/gdb/gdb/ |
| HD | fbsd-proc.c | 82 int read, write, exec; in fbsd_find_memory_regions() local 100 exec = (strchr (protection, 'x') != 0); in fbsd_find_memory_regions() 109 exec ? 'x' : '-'); in fbsd_find_memory_regions() 113 func (start, size, read, write, exec, obfd); in fbsd_find_memory_regions()
|
| /NextBSD/sys/sys/ |
| HD | exec.h | 101 struct execsw *exec = (struct execsw *)data; \ 106 error = exec_register(exec); \ 112 error = exec_unregister(exec); \
|
| /NextBSD/crypto/openssh/regress/ |
| HD | README.regress | 10 based tests, which are driven by a driver script (test-exec.sh) which is 43 If you need to manipulate the environment more you can invoke test-exec.sh 48 $ PATH=`pwd`/..:$PATH:. TEST_SHELL=/bin/sh sh test-exec.sh `pwd` \ 55 test-exec.sh: the main test driver. Sets environment, creates config files 86 $ PATH=`pwd`/..:$PATH:. sh -x test-exec.sh `pwd` agent-timeout.sh 89 - run the individual test via ./test-exec.sh `pwd` [testname] 90 - set LogLevel to VERBOSE in test-exec.sh and enable syslogging of
|