Lines Matching defs:stream
291 void compressStream ( FILE *stream, FILE *zStream )
299 SET_BINARY_MODE(stream);
302 if (ferror(stream)) goto errhandler_io;
313 if (myfeof(stream)) break;
314 nIbuf = fread ( ibuf, sizeof(UChar), 5000, stream );
315 if (ferror(stream)) goto errhandler_io;
331 if (ferror(stream)) goto errhandler_io;
332 ret = fclose ( stream );
368 Bool uncompressStream ( FILE *zStream, FILE *stream )
380 SET_BINARY_MODE(stream);
383 if (ferror(stream)) goto errhandler_io;
399 fwrite ( obuf, sizeof(UChar), nread, stream );
400 if (ferror(stream)) goto errhandler_io;
420 if (ferror(stream)) goto errhandler_io;
421 ret = fflush ( stream );
423 if (stream != stdout) {
424 ret = fclose ( stream );