| /src/common/dist/zlib/contrib/dotzlib/DotZLib/ | 
| 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");
 
 | 
| /src/common/dist/zlib/ | 
| gzlib.c | 260 gzFile ZEXPORT gzopen(const char *path, const char *mode) {  function in typeref:typename:gzFile ZEXPORT 
 | 
| zlib.h | 1310 ZEXTERN gzFile ZEXPORT gzopen(const char *path, const char *mode); 1329    streams in a file.  The append function of gzopen() can be used to create
 1331    appending, gzopen does not test whether the file begins with a gzip stream,
 1332    nor does it look for the end of the gzip streams to begin appending.  gzopen
 1335      gzopen can be used to read a file which is not in gzip format; in this
 1340      gzopen returns NULL if the file could not be opened, if there was
 1343    errno can be checked to determine if the reason gzopen failed was that the
 1351    been previously opened with fopen).  The mode parameter is as in gzopen.
 1374    after gzopen() or gzdopen(), and before any other calls that read or write
 1531    yet.  If gzungetc is used immediately after gzopen or gzdopen, at least th
 1882 # define gzopen  macro
 [all...]
 | 
| zconf.h.in | 85 #    define gzopen                z_gzopen  macro 
 | 
| zconf.h | 89 #    define gzopen                z_gzopen  macro 
 | 
| /src/common/dist/zlib/contrib/ada/ | 
| zlib-thin.ads | 182    function gzopen (path : Chars_Ptr; mode : Chars_Ptr) return gzFile;  subprogspec 402    pragma Import (C, gzopen, "gzopen");
 
 | 
| /src/common/dist/zlib/test/ | 
| minigzip.c | 204 static gzFile gzopen(const char *path, const char *mode) {  function in typeref:typename:gzFile 415     out = gzopen(outfile, mode);
 417         fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
 460     in = gzopen(infile, "rb");
 462         fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
 551                     file = gzopen(*argv, "rb");
 553                         fprintf(stderr, "%s: can't gzopen %s\n", prog, *argv);
 
 |