Searched defs:gzopen (Results 1 - 5 of 5) sorted by relevance
/vbox/src/libs/zlib-1.2.6/ |
H A D | gzlib.c | 216 gzFile ZEXPORT gzopen(path, mode) function
|
H A D | zlib.h | 1207 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode)); 1223 streams in a file. The append function of gzopen() can be used to create 1225 appending, gzopen does not test whether the file begins with a gzip stream, 1226 nor does it look for the end of the gzip streams to begin appending. gzopen 1229 gzopen can be used to read a file which is not in gzip format; in this 1234 gzopen returns NULL if the file could not be opened, if there was 1237 errno can be checked to determine if the reason gzopen failed was that the 1245 has been previously opened with fopen). The mode parameter is as in gzopen. 1268 gzopen() or gzdopen(), and before any other calls that read or write the 1383 yet. If gzungetc is used immediately after gzopen o 1688 # define gzopen macro [all...] |
H A D | zconf.h | 58 # define gzopen vboxzlib_gzopen macro 166 # define gzopen z_gzopen macro
|
/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/ |
H A D | GZipStream.cs | 21 private static extern IntPtr gzopen(string name, string mode); method in class:DotZLib.GZipStream 56 _gzFile = gzopen(fileName, String.Format("wb{0}", (int)level)); 69 _gzFile = gzopen(fileName, "rb");
|
/vbox/src/libs/zlib-1.2.6/test/ |
H A D | minigzip.c | 174 gzFile gzopen OF((const char *, const char *)); 178 gzFile gzopen(path, mode) function 474 out = gzopen(outfile, mode); 476 fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile); 513 in = gzopen(infile, "rb"); 515 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile); 603 file = gzopen(*argv, "rb"); 605 fprintf(stderr, "%s: can't gzopen %s\n", prog, *argv);
|
Completed in 43 milliseconds