• Home
  • Raw
  • Download

Lines Matching refs:gzFile

1301 typedef struct gzFile_s *gzFile;    /* semi-opaque gzip file descriptor */
1304 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1335 insufficient memory to allocate the gzFile state, or if an invalid mode was
1341 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1343 gzdopen associates a gzFile with the file descriptor fd. File descriptors
1347 The next call of gzclose on the returned gzFile will also close the file
1358 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not
1364 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1380 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1391 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1422 gzFile file));
1447 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1456 z_size_t nitems, gzFile file));
1469 ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...));
1484 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
1492 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
1505 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
1511 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1520 ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file));
1532 ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush));
1548 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file,
1567 ZEXTERN int ZEXPORT gzrewind OF((gzFile file));
1575 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file));
1586 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile file));
1595 ZEXTERN int ZEXPORT gzeof OF((gzFile file));
1610 ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
1631 ZEXTERN int ZEXPORT gzclose OF((gzFile file));
1644 ZEXTERN int ZEXPORT gzclose_r OF((gzFile file));
1645 ZEXTERN int ZEXPORT gzclose_w OF((gzFile file));
1656 ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
1672 ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));
1823 ZEXTERN int ZEXPORT gzgetc_ OF((gzFile file)); /* backward compatibility */
1840 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
1841 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
1842 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
1843 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
1865 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
1866 ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int));
1867 ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile));
1868 ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile));
1873 ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *));
1874 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int));
1875 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile));
1876 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile));
1898 ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path,
1903 ZEXTERN int ZEXPORTVA gzvprintf Z_ARG((gzFile file,