/src/usr.bin/make/unit-tests/ |
opt-no-action.mk | 5 # Only commands that are in a .MAKE target or prefixed by '+' are run. 9 # This command cannot be prevented from being run since it is used at parse 14 all: run-always 16 # Both of these commands are printed, but only the '+' command is run. 19 @+echo '$@: run always' 21 # Both of these commands are printed, but only the '+' command is run. 24 @+echo '$@: run always' 26 # None of these commands is printed, but both are run, because this target 28 run-always: .MAKE 30 @+echo '$@: run always [all...] |
/src/usr.bin/sys_info/ |
sys_info.sh | 88 run() { function 89 # must send to stderr, as run is used in $() sometimes. 107 run "awk --version | awk '{ print \$1 \"-\" \$3 }'" 110 run "named -v | awk '{ gsub(\"-\", \"\", \$2); gsub(\"P\", \"pl\", \$2); print tolower(\$1) \"-\" \$2 }'" 113 v=$(run "${destdir}/usr/libexec/httpd -G") 116 run "strings -a ${destdir}/usr/libexec/httpd | awk -F/ '\$1 == \"bozohttpd\" && NF == 2 { print \$1 \"-\" \$2; exit }'" 124 run "bzip2 --help 2>&1 | awk '{ sub(\",\", \"\", \$7); print \"bzip2-\" \$7; exit }'" 127 v=$(run "calendar -v" || true) 134 run "dhcpcd --version | sed -e 's/ /-/g' -e 1q" 137 run "dtc --version | sed 's/Version: DTC /dtc-/' [all...] |
/src/sys/arch/bebox/stand/boot/ |
srt0.s | 105 * run(startsym, endsym, args, bootinfo, entry) 107 .globl run 108 run: label
|
/src/sbin/devpubd/ |
Makefile | 10 CPPFLAGS+= -DDEVPUBD_RUN_HOOKS=\"/libexec/devpubd-run-hooks\" 12 SCRIPTS= devpubd-run-hooks 13 SCRIPTSDIR_devpubd-run-hooks= /libexec 25 CLEANFILES= devpubd-run-hooks 27 .for f in devpubd-run-hooks
|
/src/sys/arch/prep/stand/boot/ |
srt0.s | 112 * run(startsym, endsym, args, bootinfo, entry) 114 .globl run 115 run: label
|
/src/sys/arch/rs6000/stand/boot/ |
srt0.s | 119 * run(startsym, endsym, args, bootinfo, entry) 121 .globl run 122 run: label
|
srt0_pwr.s | 121 * run(startsym, endsym, args, bootinfo, entry) 123 .globl run 124 run: label
|
/src/tests/lib/libc/sys/ |
t_getcontext.c | 46 run(int n, ...) function in typeref:typename:void 111 makecontext(&uc[i], (void *)run, 10, i,
|
t_pipe2.c | 56 run(int flags) function in typeref:typename:void 115 run(0); 137 * The heart of this test is to run against the number of open 160 run(O_NONBLOCK); 171 run(O_CLOEXEC); 183 run(O_CLOFORK); 197 run(O_NOSIGPIPE);
|
t_socketpair.c | 66 run(int flags) function in typeref:typename:void 119 run(0); 130 run(SOCK_NONBLOCK); 141 run(SOCK_CLOEXEC); 153 run(SOCK_CLOFORK);
|
/src/usr.sbin/npf/npftest/libnpftest/ |
npf_perf_test.c | 21 static volatile int run; variable in typeref:typename:volatile int 40 while (!run) 64 run = false; 77 run = true;
|
/src/tests/lib/libpthread/ |
t_condwait.c | 51 run(void *param) function in typeref:typename:void * 109 ATF_REQUIRE_EQ(pthread_create(&child, NULL, run, &clck), 0);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
standalone_malloc_test.cc | 62 static void *run(void *t) { function in struct:DeepStack 64 DeepStack<depth - 1>::run(t); 72 static void *run(void *t) { function in struct:DeepStack 82 pthread_create(&t[i], 0, DeepStack<200>::run, reinterpret_cast<void *>(i));
|
/src/usr.sbin/certctl/ |
certctl.sh | 55 nflag=false # dry run 105 # run <cmd> <args>... 107 # Print a command if verbose, and run it unless it's a dry run. 109 run() function 130 if ! $nflag; then # skip command if dry run 433 run rm -rf -- "$certsdir" 450 run rmdir -- "$certsdir" 455 run mkdir -- "$certsdir" 476 run ln -s -- "$cert" "$certsdir [all...] |
/src/sys/ddb/ |
db_proc.c | 133 bool run; local in function:db_show_all_procs 198 run = (l.l_stat == LSONPROC || 214 (run ? '>' : ' '), l.l_lid, 256 run = (l.l_stat == LSONPROC || 266 (run ? '>' : ' '), l.l_lid, 290 bool run; local in function:db_show_proc 334 run = (l.l_stat == LSONPROC || 337 db_printf("%slwp %d", (run ? "> " : " "), l.l_lid);
|
/src/sys/arch/hpc/stand/hpcboot/ |
hpcboot.cpp | 76 ret = app->run(); // Main loop. 255 HpcBootApp::run(void) function in class:HpcBootApp
|
/src/sys/arch/sandpoint/stand/altboot/ |
entry.S | 163 * run(startsym, endsym, howto, bootinfo, entry) 165 .globl run 166 run: label
|
/src/sys/lib/libkern/ |
rngtest.c | 78 /* Run FIPS 140 statistical tests on a file */ 172 /* end of run */ 174 endrun(rngtest_t *const rc, const int last, int run) 176 if (run >= longrun) { 177 printf("Kernel RNG \"%s\" long run test FAILURE: " 178 "Run of %d %ds found\n", rc->rt_name, run, last); 181 if (run > 6) 182 run = 6; 183 ++rc->rt_runs[last][run]; 194 int run; local in function:rngtest [all...] |
/src/tests/fs/fifofs/ |
t_fifo.c | 92 run(void) function in typeref:typename:int 222 ATF_REQUIRE(run() == 0); 236 return run();
|
/src/games/cribbage/ |
score.c | 230 BOOLEAN run; local in function:pairuns 232 run = TRUE; 257 if (i == (n - 1) && run) { 263 if (run) { 268 run = TRUE; 276 if (run) 278 run = FALSE;
|
/src/games/hack/ |
def.flag.h | 87 unsigned run:3; /* 0: h (etc), 1: H (etc), 2: fh (etc) */ member in struct:flag
|
/src/regress/sys/kern/nameibench/ |
nameibench.c | 163 run(int nt) function in typeref:typename:void 222 run(i);
|
/src/tests/kernel/ |
t_pty.c | 47 static void run(void); 57 void run(void) function in typeref:typename:void 307 run(); 323 run(); 337 run();
|
/src/tests/lib/libc/gen/ |
t_glob.c | 204 run(const char *p, int flags, /* const char *res */ ...) function in typeref:typename:void 261 #define run(p, flags, ...) (run)(p, flags, __VA_ARGS__, (const char *) 0) macro 272 run("a/b/[x-z]", 0, 285 run("a/b/[!x-z]", 0, 298 run("a/**", GLOB_STAR, 311 run("a/**", 0, 324 run("**", GLOB_STAR, 339 run(".**", GLOB_STAR, 360 run(pattern, GLOB_NOCHECK, glob_nocheck, __arraycount(glob_nocheck)) [all...] |
/src/tests/lib/libc/regex/ |
t_exhaust.c | 209 run(void) function in typeref:typename:void 257 run(); 270 run();
|