Home | History | Annotate | Download | only in zlib

Lines Matching defs:gzFile

1224 typedef struct gzFile_s *gzFile;    /* semi-opaque gzip file descriptor */
1227 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1258 insufficient memory to allocate the gzFile state, or if an invalid mode was
1264 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1266 gzdopen associates a gzFile
1270 The next call of gzclose on the returned gzFile will also close the file
1281 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not
1287 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1304 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1313 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1341 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1349 ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...));
1364 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
1372 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
1385 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
1391 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1400 ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file));
1412 ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush));
1428 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file,
1447 ZEXTERN int ZEXPORT gzrewind OF((gzFile file));
1455 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file));
1466 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile file));
1475 ZEXTERN int ZEXPORT gzeof OF((gzFile file));
1490 ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
1511 ZEXTERN int ZEXPORT gzclose OF((gzFile file));
1524 ZEXTERN int ZEXPORT gzclose_r OF((gzFile file));
1525 ZEXTERN int ZEXPORT gzclose_w OF((gzFile file));
1536 ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
1552 ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));
1675 ZEXTERN int ZEXPORT gzgetc_ OF((gzFile file)); /* backward compatibility */
1692 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
1693 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
1694 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
1695 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
1717 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
1718 ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int));
1719 ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile));
1720 ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile));
1725 ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *));
1726 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int));
1727 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile));
1728 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile));
1753 ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path,
1758 ZEXTERN int ZEXPORTVA gzvprintf Z_ARG((gzFile file,