Searched defs:gzFile (Results 1 - 4 of 4) sorted by relevance

/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/
H A DGZipStream.cs24 private static extern int gzclose(IntPtr gzFile); argument
27 private static extern int gzwrite(IntPtr gzFile, int data, int length); argument
30 private static extern int gzread(IntPtr gzFile, int data, int length); argument
33 private static extern int gzgetc(IntPtr gzFile); argument
36 private static extern int gzputc(IntPtr gzFile, int c); argument
/vbox/src/libs/zlib-1.2.6/test/
H A Dminigzip.c172 } *gzFile; typedef in typeref:struct:gzFile_s
174 gzFile gzopen OF((const char *, const char *));
175 gzFile gzdopen OF((int, const char *));
176 gzFile gz_open OF((const char *, int, const char *));
178 gzFile gzopen(path, mode)
185 gzFile gzdopen(fd, mode)
192 gzFile gz_open(path, fd, mode)
197 gzFile gz;
200 gz = malloc(sizeof(gzFile));
230 int gzwrite OF((gzFile, cons
[all...]
/vbox/src/libs/zlib-1.2.6/
H A Dzlib.h1204 typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */ typedef in typeref:struct:gzFile_s
1207 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1235 insufficient memory to allocate the gzFile state, or if an invalid mode was
1241 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1243 gzdopen associates a gzFile with the file descriptor fd. File descriptors
1247 The next call of gzclose on the returned gzFile will also close the file
1258 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not
1264 ZEXTERN int ZEXPORT gzbuffer OF((gzFile file, unsigned size));
1281 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1290 ZEXTERN int ZEXPORT gzread OF((gzFile fil
[all...]
H A Dzconf.h220 # define gzFile z_gzFile macro

Completed in 67 milliseconds