Home | History | Annotate | Download | only in include

Lines Matching defs:gzFile

1078 typedef voidp gzFile;
1081 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1098 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1100 gzdopen() associates a gzFile with the file descriptor fd. File
1104 The next call of gzclose on the returned gzFile will also close the
1111 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1119 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1127 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
1135 ZEXTERN int ZEXPORTVA gzprintf OF((gzFile file, const char *format, ...));
1148 ZEXTERN int ZEXPORT gzputs OF((gzFile file, const char *s));
1155 ZEXTERN char * ZEXPORT gzgets OF((gzFile file, char *buf, int len));
1164 ZEXTERN int ZEXPORT gzputc OF((gzFile file, int c));
1170 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1176 ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file));
1186 ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush));
1197 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file,
1215 ZEXTERN int ZEXPORT gzrewind OF((gzFile file));
1223 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file));
1232 ZEXTERN int ZEXPORT gzeof OF((gzFile file));
1238 ZEXTERN int ZEXPORT gzdirect OF((gzFile file));
1244 ZEXTERN int ZEXPORT gzclose OF((gzFile file));
1252 ZEXTERN const char * ZEXPORT gzerror OF((gzFile file, int *errnum));
1264 ZEXTERN void ZEXPORT gzclearerr OF((gzFile file));
1365 ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
1366 ZEXTERN off64_t ZEXPORT gzseek64 OF((gzFile, off64_t, int));
1367 ZEXTERN off64_t ZEXPORT gztell64 OF((gzFile));
1379 ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *));
1380 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int));
1381 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile));