Lines Matching refs:outfile
120 int outfile;
140 if (me->outfile != -1)
145 ret = (int)write(me->outfile, buf, ret);
191 /* Decompress a compress (LZW) file from indp to outfile. The compress magic
201 int outfile, z_stream *strm)
222 outd.outfile = outfile;
371 /* Decompress a gzip file from infile to outfile. strm is assumed to have been
374 to the output file. If outfile is -1, then the gzip stream(s) integrity is
383 local int gunpipe(z_stream *strm, int infile, int outfile)
415 ret = lunpipe(have, next, indp, outfile, strm);
467 outd.outfile = outfile;
551 int infile, outfile;
566 outfile = -1;
569 outfile = 1; /* stdout */
572 outfile = open(outname, O_CREAT | O_TRUNC | O_WRONLY, 0666);
573 if (outfile == -1) {
582 ret = gunpipe(strm, infile, outfile);
583 if (outfile > 2) close(outfile);
590 if (infile > 2 && outfile > 2) {
599 if (outfile > 2) unlink(outname);
603 if (outfile > 2) unlink(outname);
607 if (outfile > 2) unlink(outname);
622 if (outfile > 2) unlink(outname);