Home | History | Annotate | Download | only in zlib

Lines Matching defs:gzFile

1300 typedef struct gzFile_s *gzFile;    /* semi-opaque gzip file descriptor */
1303 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1334 insufficient memory to allocate the gzFile state, or if an invalid mode was
1340 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1342 gzdopen associates a gzFile with the file descriptor fd. File descriptors
1346 The next call of gzclose on the returned gzFile will also close the file
1357 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not
1363 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1379 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1390 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1421 gzFile file));
1446 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1455 z_size_t nitems, gzFile file));
1468 ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...));
1483 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
1491 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
1504 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
1510 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1519 ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file));
1531 ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush));
1547 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file,
1566 ZEXTERN int ZEXPORT gzrewind OF((gzFile file));
1574 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file));
1585 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile file));
1594 ZEXTERN int ZEXPORT gzeof OF((gzFile file));
1609 ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
1630 ZEXTERN int ZEXPORT gzclose OF((gzFile file));
1643 ZEXTERN int ZEXPORT gzclose_r OF((gzFile file));
1644 ZEXTERN int ZEXPORT gzclose_w OF((gzFile file));
1655 ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
1671 ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));
1822 ZEXTERN int ZEXPORT gzgetc_ OF((gzFile file)); /* backward compatibility */
1839 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
1840 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
1841 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
1842 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
1864 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
1865 ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int));
1866 ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile));
1867 ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile));
1872 ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *));
1873 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int));
1874 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile));
1875 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile));
1897 ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path,
1902 ZEXTERN int ZEXPORTVA gzvprintf Z_ARG((gzFile file,