/src/usr.bin/make/unit-tests/ |
job-output.mk | 7 @${MAKE} -f ${MAKEFILE} -j1 stdout-and-stderr 8 @${MAKE} -f ${MAKEFILE} -j1 echo-on-stdout-and-stderr 22 # In parallel mode, both stdout and stderr from the child process are 23 # collected in a local buffer and then written to make's stdout. 25 # expect: begin stdout-and-stderr 26 # expect: only stdout: 27 # expect: This is stdout. 30 # expect: end stdout-and-stderr 31 stdout-and-stderr: 33 @echo only stdout [all...] |
/src/bin/sh/bltin/ |
bltin.h | 55 #undef stdout 63 #define stdout out1 macro
|
/src/sys/dev/ofw/ |
ofcons.c | 62 static int stdin, stdout; variable in typeref:typename:int 107 || OF_instance_to_package(stdout) == oba->oba_phandle; 233 OF_write(stdout, buf, len); 278 OF_getprop(chosen, "stdout", stdoutbuf, sizeof stdoutbuf) != 284 stdout = of_decode_int(stdoutbuf); 324 OF_write(stdout, &ch, 1);
|
/src/sys/arch/macppc/stand/bootxx/ |
bootxx.c | 300 int stdout; variable in typeref:typename:int 305 OF_write(stdout, s, n); 334 if (OF_getprop(chosen, "stdout", &stdout, sizeof(stdout)) 335 != sizeof(stdout)) 336 stdout = -1;
|
/src/sys/arch/shark/stand/ofwboot/ |
Locore.c | 505 static int stdout; variable in typeref:typename:int 520 if (OF_getprop(chosen, "stdout", buf, sizeof(buf)) != sizeof(buf)) 522 stdout = of_decode_int(buf); 532 OF_write(stdout, &ch, 1);
|
/src/include/ |
stdio.h | 217 #define stdout (&__sF[1]) macro 499 #define putchar(x) putc(x, stdout) 525 #define putchar_unlocked(x) putc_unlocked(x, stdout)
|
/src/sys/arch/ofppc/stand/ofwboot/ |
Locore.c | 517 static int stdout; variable in typeref:typename:int 528 OF_getprop(chosen, "stdout", &stdout, sizeof(stdout)) != 529 sizeof(stdout)) 548 OF_write(stdout, &ch, 1);
|
/src/sys/arch/macppc/dev/ |
zs.c | 854 static int stdin, stdout; variable in typeref:typename:int 957 OF_write(stdout, &ch, 1); 1003 if (OF_getprop(chosen, "stdout", &stdout, sizeof(stdout)) == -1) 1070 if (OF_getprop(chosen, "stdout", &stdout, sizeof(stdout)) == -1)
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_interceptors.cc | 39 #define stdout __stdoutp macro 53 #define stdout ((char*)&__sF + (__sF_size * 1)) macro 109 extern __sanitizer_FILE *stdout, *stderr; 1773 REAL(fflush)(stdout);
|