/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i86xpv/xdt/ |
H A D | tst.schedargs.ksh | 44 outf=/tmp/sched.args.$$ 48 $dtrace -c 'sleep 10' -o $outf -qs /dev/stdin <<EOF 109 ' $outf 120 rm $outf
|
/freebsd/usr.bin/fortune/strfile/ |
H A D | strfile.c | 130 FILE *inf, *outf; in main() local 147 if ((outf = fopen(Outfile, "w")) == NULL) { in main() 152 fseek(outf, (long)sizeof(Tbl), SEEK_SET); in main() 163 add_offset(outf, ftello(inf)); in main() 174 add_offset(outf, pos); in main() 225 rewind(outf); in main() 231 fwrite((char *)&Tbl, sizeof(Tbl), 1, outf); in main() 235 fwrite(Seekpts, sizeof(*Seekpts), (size_t)Num_pts, outf); in main() 237 fclose(outf); in main()
|
/freebsd/usr.bin/ctags/ |
H A D | ctags.c | 58 FILE *outf; /* ioptr for tags file */ variable 177 if ((outf = fopen(outfile, "w")) == NULL) in main() 195 fputs(lbuf, outf); in main() 201 fclose(outf); in main() 205 if (!(outf = fopen(outfile, aflag ? "a" : "w"))) in main() 208 (void)fclose(outf); in main()
|
H A D | ctags.h | 70 extern FILE *outf; /* ioptr for current output file */
|
H A D | print.c | 103 fprintf(outf, "%s\t%s\t%c^%s%c\n", in put_entries()
|
/freebsd/usr.sbin/config/ |
H A D | mkoptions.cc | 144 FILE *inf, *outf; in do_option() local 173 outf = fopen(file, "w"); in do_option() 174 if (outf == NULL) in do_option() 179 fprintf(outf, "#define %s %s\n", name, value); in do_option() 182 (void)fclose(outf); in do_option() 265 outf = fopen(file, "w"); in do_option() 266 if (outf == NULL) in do_option() 272 fprintf(outf, "#define %s %s\n", in do_option() 280 (void)fclose(outf); in do_option()
|
/freebsd/usr.bin/msgs/ |
H A D | msgs.c | 620 FILE *outf; in prmesg() local 631 outf = popen(cmdbuf, "w"); in prmesg() 632 if (!outf) in prmesg() 633 outf = stdout; in prmesg() 635 setbuf(outf, (char *)NULL); in prmesg() 638 outf = stdout; in prmesg() 641 putc('\n', outf); in prmesg() 644 fputs(inbuf, outf); in prmesg() 645 if (ferror(outf)) { in prmesg() 646 clearerr(outf); in prmesg() [all …]
|
/freebsd/contrib/byacc/test/ |
H A D | grammar.y | 270 extern void indent (FILE *outf); 271 extern void put_blankline (FILE *outf); 272 extern void put_body (FILE *outf, DeclSpec *decl_spec, Declarator *declarator); 273 extern void put_char (FILE *outf, int c); 275 extern void put_newline (FILE *outf); 276 extern void put_padded (FILE *outf, const char *s); 277 extern void put_string (FILE *outf, const char *s);
|
/freebsd/contrib/byacc/test/yacc/ |
H A D | grammar.tab.c | 300 extern void indent (FILE *outf); 301 extern void put_blankline (FILE *outf); 302 extern void put_body (FILE *outf, DeclSpec *decl_spec, Declarator *declarator); 303 extern void put_char (FILE *outf, int c); 305 extern void put_newline (FILE *outf); 306 extern void put_padded (FILE *outf, const char *s); 307 extern void put_string (FILE *outf, const char *s);
|
/freebsd/usr.sbin/crunch/crunchgen/ |
H A D | crunchgen.c | 608 void output_strlst(FILE *outf, strlst_t *lst); 1141 output_strlst(FILE *outf, strlst_t *lst) in output_strlst() 1145 fprintf(outf, " %s", lst->str); 1146 fprintf(outf, "\n"); 1135 output_strlst(FILE * outf,strlst_t * lst) output_strlst() argument
|
/freebsd/contrib/byacc/test/btyacc/ |
H A D | grammar.tab.c | 320 extern void indent (FILE *outf); 321 extern void put_blankline (FILE *outf); 322 extern void put_body (FILE *outf, DeclSpec *decl_spec, Declarator *declarator); 323 extern void put_char (FILE *outf, int c); 325 extern void put_newline (FILE *outf); 326 extern void put_padded (FILE *outf, const char *s); 327 extern void put_string (FILE *outf, const char *s);
|