Lines Matching defs:file

17 /* Initialize state for writing a gzip file.  Mark initialization by setting
70 /* Compress whatever is at avail_in and next_in and write to the output file.
71 Return -1 if there is an error writing to the output file or if gz_init()
75 to the output file without compressing, and ignore flush. */
179 /* Write len bytes from buf to file. Return the number of bytes written. If
230 /* directly compress user buffer to file */
249 int ZEXPORT gzwrite(file, buf, len)
250 gzFile file;
257 if (file == NULL)
259 state = (gz_statep)file;
277 z_size_t ZEXPORT gzfwrite(buf, size, nitems, file)
281 gzFile file;
287 if (file == NULL)
289 state = (gz_statep)file;
307 int ZEXPORT gzputc(file, c)
308 gzFile file;
317 if (file == NULL)
319 state = (gz_statep)file;
355 int ZEXPORT gzputs(file, str)
356 gzFile file;
364 if (file == NULL)
366 state = (gz_statep)file;
382 int ZEXPORTVA gzvprintf(gzFile file, const char *format, va_list va)
391 if (file == NULL)
393 state = (gz_statep)file;
454 int ZEXPORTVA gzprintf(gzFile file, const char *format, ...)
460 ret = gzvprintf(file, format, va);
468 int ZEXPORTVA gzprintf (file, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10,
470 gzFile file;
481 if (file == NULL)
483 state = (gz_statep)file;
556 int ZEXPORT gzflush(file, flush)
557 gzFile file;
563 if (file == NULL)
565 state = (gz_statep)file;
588 int ZEXPORT gzsetparams(file, level, strategy)
589 gzFile file;
597 if (file == NULL)
599 state = (gz_statep)file;
630 int ZEXPORT gzclose_w(file)
631 gzFile file;
637 if (file == NULL)
639 state = (gz_statep)file;
652 /* flush, free memory, and close file */