Searched refs:stdout (Results 1 - 25 of 1415) sorted by relevance

1234567891011>>

/src/tests/lib/csu/
H A Dh_hello.c46 fflush(stdout);
47 return ferror(stdout);
/src/usr.bin/make/unit-tests/
H A Djob-output.exp5 begin stdout-and-stderr
6 only stdout:
7 This is stdout.
10 end stdout-and-stderr
11 This is stdout.
H A Djob-output.mk7 @${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...]
H A Ddepsrc-ignore.mk11 # ignore-errors". This is due to stdout being buffered.
19 # As the manual page says, in debugging mode stdout is line buffered.
20 # In these tests the output is redirected to a file, therefore stdout is
27 # * the "fflush" line, to see stdout being flushed
37 # Goes to the stdout buffer (CompatRunCommand, keyword "!silent") and
38 # the immediate call to fflush(stdout) copies it to STDOUT_FILENO.
40 # Goes to the stdout buffer but is not flushed (CompatRunCommand, near
47 # Goes to the stdout buffer, where the "*** Error code 1 (ignored)" is
50 # Goes to the stdout buffer.
52 # Goes to the stdout buffe
[all...]
/src/regress/sys/arch/m68k/060sp/
H A Ddotest.c44 fflush(stdout);
52 fflush(stdout);
/src/tests/libexec/ld.elf_so/data/
H A DMakefile16 FILES+= symver-output-ref-stdout.v0-v0
17 FILES+= symver-output-ref-stdout.v0-v1
18 FILES+= symver-output-ref-stdout.v0-v2
19 FILES+= symver-output-ref-stdout.v1-v0
20 FILES+= symver-output-ref-stdout.v1-v1
21 FILES+= symver-output-ref-stdout.v1-v2
22 FILES+= symver-output-ref-stdout.v2-v0
23 FILES+= symver-output-ref-stdout.v2-v1
24 FILES+= symver-output-ref-stdout.v2-v2
/src/tests/usr.sbin/execsnoop/
H A Dt_execsnoop.sh30 stdout="execsnoop.out"
49 atf_check -s exit:0 -o ignore -e empty -x "execsnoop >$stdout 2>$stderr &"
61 if [ ! $(cat $stdout | grep "whoami" | wc -l) -eq 10 ]; then
/src/tests/crypto/libcrypto/conf/
H A Dtest.c81 lh_stats((_LHASH *)conf,stdout);
82 lh_node_stats((_LHASH *)conf,stdout);
83 lh_node_usage_stats((_LHASH *)conf,stdout);
95 CONF_dump_fp(conf, stdout);
/src/lib/libc/stdio/
H A Dputwchar.c48 return fputwc(wc, stdout);
H A Dputchar.c57 FILE *fp = stdout;
69 return __sputc(c, stdout);
H A Dvprintf.c56 return vfprintf(stdout, fmt, ap);
63 return vfprintf_l(stdout, loc, fmt, ap);
H A Dvwprintf.c48 return vfwprintf_l(stdout, loc, fmt, ap);
55 return vfwprintf(stdout, fmt, ap);
H A Dputs.c53 * Write the given string to stdout, appending a newline.
77 FLOCKFILE(stdout);
78 r = __sfvwrite(stdout, &uio);
79 FUNLOCKFILE(stdout);
H A Dprintf.c59 ret = vfprintf(stdout, fmt, ap);
71 ret = vfprintf_l(stdout, loc, fmt, ap);
H A Dwprintf.c52 ret = vfwprintf(stdout, fmt, ap);
65 ret = vfwprintf_l(stdout, loc, fmt, ap);
/src/bin/sh/bltin/
H A Decho.c71 clearerr(stdout);
120 fflush(stdout);
121 if (ferror(stdout)) {
122 clearerr(stdout);
/src/usr.sbin/mopd/moptrace/
H A Dmoptrace.c137 mopPrintHeader(stdout, pkt, trans);
138 mopPrintMopHeader(stdout, pkt, trans);
140 mopDumpDL(stdout, pkt, trans);
141 mopDumpRC(stdout, pkt, trans);
143 fprintf(stdout, "\n");
144 fflush(stdout);
/src/usr.sbin/sesd/srcs/
H A Dgetencstat.c91 fprintf(stdout, "%s: Enclosure OK\n", *v);
95 fprintf(stdout, "%s: Enclosure Status ", *v);
97 fprintf(stdout, "<OK");
102 fprintf(stdout, "%cINFO", f);
106 fprintf(stdout, "%cNONCRITICAL", f);
110 fprintf(stdout, "%cCRITICAL", f);
114 fprintf(stdout, "%cUNRECOV", f);
118 fprintf(stdout, ">\n");
139 fprintf(stdout,
148 fprintf(stdout, "Elemen
[all...]
H A Dchpmon.c100 fprintf(stdout, "%s: Clearing CRITICAL "
108 fprintf(stdout, "%s: Setting CRITICAL from:", v[dev]);
110 fprintf(stdout, " UNRECOVERABLE");
113 fprintf(stdout, " CRITICAL");
116 fprintf(stdout, " NONCRITICAL");
/src/tests/fs/fifofs/
H A Dt_fifo.c68 fflush(stdout);
86 fflush(stdout);
135 fflush(stdout);
154 fflush(stdout);
166 fflush(stdout);
178 fflush(stdout);
185 fflush(stdout);
193 fflush(stdout);
205 fflush(stdout);
/src/regress/lib/libc/ieeefp/testfloat/
H A DtestLoops.c139 fputs( "No errors found in ", stdout );
140 writeFunctionName( stdout );
141 fputs( ".\n", stdout );
142 fflush( stdout );
163 fputs( "Errors found in ", stdout );
164 writeFunctionName( stdout );
165 fputs( ":\n", stdout );
178 writeHex_bits32( testCases_a_int32, stdout );
187 writeHex_bits64( testCases_a_int64, stdout );
196 writeHex_float32( testCases_a_float32, stdout );
[all...]
/src/usr.bin/uname/
H A Duname.c126 fputs(u.sysname, stdout);
130 fputs(u.nodename, stdout);
134 fputs(u.release, stdout);
138 fputs(u.version, stdout);
142 fputs(u.machine, stdout);
146 fputs(machine_arch, stdout);
/src/bin/echo/
H A Decho.c71 (void)fflush(stdout);
72 if (ferror(stdout) != 0)
/src/usr.sbin/lpr/lptest/
H A Dlptest.c57 setbuf(stdout, outbuf);
78 (void)fflush(stdout);
/src/games/hals_end/
H A Dhals_end.c38 fflush(stdout);
75 fflush(stdout);
106 fflush(stdout);
148 fflush(stdout);

Completed in 9 milliseconds

1234567891011>>