Lines Matching defs:gzFile

1204 typedef struct gzFile_s *gzFile;    /* semi-opaque gzip file descriptor */
1207 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1235 insufficient memory to allocate the gzFile state, or if an invalid mode was
1241 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1243 gzdopen associates a gzFile with the file descriptor fd. File descriptors
1247 The next call of gzclose on the returned gzFile will also close the file
1258 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not
1264 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1281 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1290 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1318 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1326 ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...));
1341 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
1349 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
1362 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
1368 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1377 ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file));
1389 ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush));
1405 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file,
1424 ZEXTERN int ZEXPORT gzrewind OF((gzFile file));
1432 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file));
1443 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile file));
1452 ZEXTERN int ZEXPORT gzeof OF((gzFile file));
1467 ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
1488 ZEXTERN int ZEXPORT gzclose OF((gzFile file));
1501 ZEXTERN int ZEXPORT gzclose_r OF((gzFile file));
1502 ZEXTERN int ZEXPORT gzclose_w OF((gzFile file));
1513 ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
1529 ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));
1653 ZEXTERN int ZEXPORT gzgetc_ OF((gzFile file));
1664 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
1665 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
1666 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
1667 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
1696 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
1697 ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int));
1698 ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile));
1699 ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile));
1704 ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *));
1705 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int));
1706 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile));
1707 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile));