Searched refs:fp_in (Results 1 – 5 of 5) sorted by relevance
/titanic_41/usr/src/cmd/lp/filter/postscript/common/ |
H A D | request.c | 129 FILE *fp_in; in dumprequest() local 142 if ( (fp_in = fopen(file, "r")) != NULL ) { in dumprequest() 143 while ( fgets(buf, sizeof(buf), fp_in) != NULL ) in dumprequest() 145 while ( fgets(buf, sizeof(buf), fp_in) != NULL ) in dumprequest() 151 fclose(fp_in); in dumprequest()
|
/titanic_41/usr/src/cmd/lp/filter/postscript/download/ |
H A D | download.c | 113 FILE *fp_in = stdin; /* next input file */ variable 379 fp_in = stdin; in arguments() 380 else if ( (fp_in = fopen(*argv, "r")) == NULL ) in arguments() 383 if ( fp_in != stdin ) in arguments() 384 fclose(fp_in); in arguments() 431 if ( fp_in == stdin ) { in download() 440 while ( fgets(buf, sizeof(buf), fp_in) != NULL ) { in download() 519 if ( fp_in != stdin ) in copyinput() 520 fseek(fp_in, 0L, 0); in copyinput() 522 while ( fgets(buf, sizeof(buf), fp_in) != NULL ) in copyinput()
|
/titanic_41/usr/src/cmd/lp/filter/postscript/postprint/ |
H A D | postprint.c | 144 FILE *fp_in = stdin; /* read from this file */ variable 536 fp_in = stdin; in arguments() 537 else if ( (fp_in = fopen(*argv, "r")) == NULL ) in arguments() 540 if ( fp_in != stdin ) in arguments() 541 fclose(fp_in); in arguments() 630 while ( (ch = getc(fp_in)) != EOF ) in text() 722 if ( ungetc(getc(fp_in), fp_in) == EOF ) in formfeed() 799 } while ( ch = getc(fp_in) ); /* if ch is 0 we'd quit anyway */ in spaces() 801 ungetc(ch, fp_in); /* wasn't a space, tab, or backspace */ in spaces()
|
/titanic_41/usr/src/cmd/lp/filter/postscript/dpost/ |
H A D | pictures.c | 108 FILE *fp_in; /* for *name */ in picture() local 157 if ( (fp_in = picopen(name)) == NULL ) { in picture() 194 ps_include(fp_in, tf, page, whiteout, outline, scaleboth, in picture() 201 fclose(fp_in); in picture() 303 piccopy(FILE *fp_in, FILE *fp_out, long total) in piccopy() argument 321 if ( putc(getc(fp_in), fp_out) == EOF ) in piccopy()
|
H A D | dpost.c | 2765 FILE *fp_in; /* PostScript font name read from here */ in documentfonts() local 2786 if ( (fp_in = fopen(temp, "r")) != NULL ) { in documentfonts() 2788 if ( fscanf(fp_in, "%s", temp) == 1 ) { in documentfonts() 2797 fclose(fp_in); in documentfonts()
|