Searched refs:fp_out (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/lp/filter/postscript/postprint/
H A Dpostprint.c145 FILE *fp_out = stdout; /* and write stuff here */ variable
659 putc('\\', fp_out);
675 fprintf(fp_out, "\\%03o", 0xFF&ch);
711 if ( fp_out == stdout ) /* count the last page */
716 fprintf(fp_out, "cleartomark\n");
717 fprintf(fp_out, "showpage\n");
718 fprintf(fp_out, "restore\n");
720 fprintf(fp_out, "%s %d %d\n", ENDPAGE, page, printed);
727 fprintf(fp_out, "%s %d %d\n", PAGE, page, printed+1);
728 fprintf(fp_out, "sav
[all...]
/illumos-gate/usr/src/cmd/lp/filter/postscript/common/
H A Drequest.c98 writerequest(int page, FILE *fp_out) argument
100 /* fp_out - to this file */
114 dumprequest(request[i].want, request[i].file, fp_out);
123 dumprequest(char *want, char *file, FILE *fp_out) argument
126 /* fp_out - and write the value out here */
149 fprintf(fp_out, "%s", buf);
/illumos-gate/usr/src/cmd/lp/filter/postscript/dpost/
H A Dpictures.c303 piccopy(FILE *fp_in, FILE *fp_out, long total) argument
305 /* fp_out - and output file pointers */
313 * Copies total bytes from file fp_in to fp_out. Used to append picture files to
321 if ( putc(getc(fp_in), fp_out) == EOF )
323 fflush(fp_out);
H A Ddpost.c2766 FILE *fp_out; /* and added to this file */ local
2787 if ( (fp_out = fopen(temp_file, "a")) != NULL ) {
2790 fprintf(fp_out, "%s", DOCUMENTFONTS);
2792 fprintf(fp_out, "\n%s", CONTINUECOMMENT);
2793 fprintf(fp_out, " %s", temp);
2795 fclose(fp_out);

Completed in 65 milliseconds