Home | History | Annotate | Download | only in zlib

Lines Matching refs:gzFile

1165 typedef voidp gzFile;       /* opaque gzip file descriptor */
1168 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1184 insufficient memory to allocate the gzFile state, or if an invalid mode was
1190 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1192 gzdopen associates a gzFile with the file descriptor fd. File descriptors
1196 The next call of gzclose on the returned gzFile will also close the file
1203 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not
1209 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1226 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1235 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1251 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1259 ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...));
1274 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
1282 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
1295 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
1301 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1307 ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file));
1319 ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush));
1335 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file,
1354 ZEXTERN int ZEXPORT gzrewind OF((gzFile file));
1362 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file));
1373 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile file));
1382 ZEXTERN int ZEXPORT gzeof OF((gzFile file));
1397 ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
1413 ZEXTERN int ZEXPORT gzclose OF((gzFile file));
1425 ZEXTERN int ZEXPORT gzclose_r OF((gzFile file));
1426 ZEXTERN int ZEXPORT gzclose_w OF((gzFile file));
1437 ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
1453 ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));
1566 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
1567 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
1568 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
1569 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
1582 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
1583 ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int));
1584 ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile));
1585 ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile));
1590 ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *));
1591 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int));
1592 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile));
1593 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile));