Searched refs:outf (Results 1 - 11 of 11) sorted by relevance

/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i86xpv/xdt/
H A Dtst.schedargs.ksh44 outf=/tmp/sched.args.$$
48 $dtrace -c 'sleep 10' -o $outf -qs /dev/stdin <<EOF
109 ' $outf
120 rm $outf
/freebsd-current/usr.sbin/config/
H A Dmkoptions.cc141 FILE *inf, *outf; local
170 outf = fopen(file, "w");
171 if (outf == NULL)
176 fprintf(outf, "#define %s %s\n", name, value);
179 (void)fclose(outf);
262 outf = fopen(file, "w");
263 if (outf == NULL)
269 fprintf(outf, "#define %s %s\n",
277 (void)fclose(outf);
/freebsd-current/usr.bin/fortune/strfile/
H A Dstrfile.c130 FILE *inf, *outf; local
147 if ((outf = fopen(Outfile, "w")) == NULL) {
152 fseek(outf, (long)sizeof(Tbl), SEEK_SET);
163 add_offset(outf, ftello(inf));
174 add_offset(outf, pos);
225 rewind(outf);
231 fwrite((char *)&Tbl, sizeof(Tbl), 1, outf);
235 fwrite(Seekpts, sizeof(*Seekpts), (size_t)Num_pts, outf);
237 fclose(outf);
/freebsd-current/usr.bin/ctags/
H A Dctags.c58 FILE *outf; /* ioptr for tags file */ variable
177 if ((outf = fopen(outfile, "w")) == NULL)
195 fputs(lbuf, outf);
201 fclose(outf);
205 if (!(outf = fopen(outfile, aflag ? "a" : "w")))
208 (void)fclose(outf);
H A Dprint.c103 fprintf(outf, "%s\t%s\t%c^%s%c\n",
H A Dctags.h70 extern FILE *outf; /* ioptr for current output file */
/freebsd-current/usr.bin/msgs/
H A Dmsgs.c620 FILE *outf; local
631 outf = popen(cmdbuf, "w");
632 if (!outf)
633 outf = stdout;
635 setbuf(outf, (char *)NULL);
638 outf = stdout;
641 putc('\n', outf);
644 fputs(inbuf, outf);
645 if (ferror(outf)) {
646 clearerr(outf);
[all...]
/freebsd-current/contrib/byacc/test/
H A Dgrammar.y270 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-current/contrib/byacc/test/yacc/
H A Dgrammar.tab.c300 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-current/usr.sbin/crunch/crunchgen/
H A Dcrunchgen.c608 void output_strlst(FILE *outf, strlst_t *lst);
1141 output_strlst(FILE *outf, strlst_t *lst) argument
1145 fprintf(outf, " %s", lst->str);
1146 fprintf(outf, "\n");
/freebsd-current/contrib/byacc/test/btyacc/
H A Dgrammar.tab.c320 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);

Completed in 223 milliseconds