Home | History | Annotate | Download | only in zlib

Lines Matching refs:gzFile

1066 typedef voidp gzFile;
1068 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1085 long long gzgetMtime(gzFile file);
1088 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1090 gzdopen() associates a gzFile with the file descriptor fd. File
1094 The next call of gzclose on the returned gzFile will also close the
1101 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1109 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1117 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1125 ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...));
1138 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
1145 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
1154 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
1160 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1166 ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file));
1176 ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush));
1186 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file,
1204 ZEXTERN int ZEXPORT gzrewind OF((gzFile file));
1211 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file));
1220 ZEXTERN int ZEXPORT gzeof OF((gzFile file));
1226 ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
1232 ZEXTERN int ZEXPORT gzclose OF((gzFile file));
1239 ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
1248 ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));