Lines Matching refs:gzFile
1286 typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */ typedef
1289 gzFile zng_gzopen(const char *path, const char *mode);
1327 gzFile zng_gzdopen(int fd, const char *mode);
1351 int32_t zng_gzbuffer(gzFile file, uint32_t size);
1368 int32_t zng_gzsetparams(gzFile file, int32_t level, int32_t strategy);
1380 int32_t zng_gzread(gzFile file, void *buf, uint32_t len);
1411 size_t zng_gzfread(void *buf, size_t size, size_t nitems, gzFile file);
1435 int32_t zng_gzwrite(gzFile file, void const *buf, uint32_t len);
1443 size_t zng_gzfwrite(void const *buf, size_t size, size_t nitems, gzFile file);
1455 int32_t zng_gzprintf(gzFile file, const char *format, ...);
1471 int32_t zng_gzputs(gzFile file, const char *s);
1480 char * zng_gzgets(gzFile file, char *buf, int32_t len);
1494 int32_t zng_gzputc(gzFile file, int32_t c);
1501 int32_t zng_gzgetc(gzFile file);
1511 int32_t zng_gzungetc(int32_t c, gzFile file);
1524 int32_t zng_gzflush(gzFile file, int32_t flush);
1540 z_off64_t zng_gzseek(gzFile file, z_off64_t offset, int whence);
1559 int32_t zng_gzrewind(gzFile file);
1567 z_off64_t zng_gztell(gzFile file);
1578 z_off64_t zng_gzoffset(gzFile file);
1588 int32_t zng_gzeof(gzFile file);
1604 int32_t zng_gzdirect(gzFile file);
1626 int32_t zng_gzclose(gzFile file);
1640 int32_t zng_gzclose_r(gzFile file);
1642 int32_t zng_gzclose_w(gzFile file);
1654 const char * zng_gzerror(gzFile file, int32_t *errnum);
1671 void zng_gzclearerr(gzFile file);
1813 Z_EXTERN Z_EXPORT int32_t zng_gzgetc_(gzFile file); /* backward compatibility */
1879 Z_EXTERN Z_EXPORT gzFile zng_gzopen_w(const wchar_t *path, const char *mode);
1881 Z_EXTERN Z_EXPORTVA int32_t zng_gzvprintf(gzFile file, const char *format, va_list va);