Searched refs:gzopen (Results 1 - 25 of 34) sorted by relevance

12

/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/zlib/src/
H A DzlibtclStubInit.c55 gzopen, /* 30 */
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/zlib/
H A DzlibtclStubInit.c55 gzopen, /* 30 */
H A DzlibtclDecls.h106 ZEXTERN gzFile gzopen(const char *path, const char *mode);
259 #define gzopen \ macro
/macosx-10.10/zlib-55/zlib/contrib/dotzlib/DotZLib/
H A DGZipStream.cs21 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");
/macosx-10.10/tcl-105/tcl_ext/trf/trf/compat/
H A DtclLoadNone.c27 extern int gzopen ();
101 { "gzopen", gzopen },
H A Dzlib.h659 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
667 gzopen can be used to read a file which is not in gzip format; in this
670 gzopen returns NULL if the file could not be opened or if there was
680 The mode parameter is as in gzopen.
/macosx-10.10/zlib-55/zlib/
H A Dminigzip.c283 out = gzopen(outfile, mode);
285 fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
322 in = gzopen(infile, "rb");
324 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
412 file = gzopen(*argv, "rb");
414 fprintf(stderr, "%s: can't gzopen %s\n", prog, *argv);
H A Dzlib.h1175 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1187 gzopen can be used to read a file which is not in gzip format; in this
1190 gzopen returns NULL if the file could not be opened, if there was
1193 errno can be checked to determine if the reason gzopen failed was that the
1201 has been previously opened with fopen). The mode parameter is as in gzopen.
1221 gzopen() or gzdopen(), and before any other calls that read or write the
1321 yet. If gzungetc is used immediately after gzopen or gzdopen, at least the
1415 If gzdirect() is used immediately after gzopen() or gzdopen() it will
1589 # define gzopen gzopen64 macro
1604 ZEXTERN gzFile ZEXPORT gzopen O
[all...]
H A Dzconf.h67 # define gzopen z_gzopen macro
H A Dexample.c98 file = gzopen(fname, "wb");
100 fprintf(stderr, "gzopen error\n");
115 file = gzopen(fname, "rb");
117 fprintf(stderr, "gzopen error\n");
H A Dgzlib.c196 gzFile ZEXPORT gzopen(path, mode) function
H A Dzconf.h.cmakein69 # define gzopen z_gzopen
H A Dzconf.h.in67 # define gzopen z_gzopen
/macosx-10.10/zlib-55/zlib/contrib/iostream2/
H A Dzstream.h67 m_fp = ::gzopen(name, "rb");
181 m_fp = ::gzopen(name, mode);
/macosx-10.10/sudo-73/src/zlib/
H A Dzlib.h1207 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
1681 # define gzopen macro
[all...]
H A Dgzlib.c216 gzFile ZEXPORT gzopen(path, mode) function
H A Dzconf.h.in83 # define gzopen z_gzopen
/macosx-10.10/zlib-55/zlib/contrib/pascal/
H A Dexample.pas92 zfile := gzopen(fname, 'wb');
95 WriteLn('gzopen error');
120 zfile := gzopen(fname, 'rb');
123 WriteLn('gzopen error');
/macosx-10.10/zlib-55/zlib/contrib/iostream/
H A Dzfstream.cpp51 if ( (file = gzopen(name, char_mode)) == NULL )
/macosx-10.10/rsync-45/rsync/zlib/
H A Dzlib.h1069 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1078 gzopen can be used to read a file which is not in gzip format; in this
1081 gzopen returns NULL if the file could not be opened or if there was
1091 The mode parameter is as in gzopen.
/macosx-10.10/xnu-2782.1.97/libkern/libkern/
H A Dzlib.h1098 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1107 gzopen can be used to read a file which is not in gzip format; in this
1110 gzopen returns NULL if the file could not be opened or if there was
1120 The mode parameter is as in gzopen.
/macosx-10.10/zlib-55/zlib/contrib/iostream3/
H A Dzfstream.cc61 // Build mode string for gzopen and check it [27.8.1.3.2]
67 if ((file = gzopen(name, char_mode)) == NULL)
/macosx-10.10/zlib-55/zlib/contrib/untgz/
H A Duntgz.c659 f = gzopen(TGZfile,"rb");
662 fprintf(stderr,"%s: Couldn't gzopen %s\n",prog,TGZfile);
/macosx-10.10/libxml2-26/libxml2/
H A DxmlIO.c629 fd = gzopen (path, mode);
718 static xmlWrapGzOpenFunc xmlWrapGzOpen = gzopen;
746 xmlWrapGzOpen = gzopen;
1189 fd = gzopen(path, "rb");
1261 fd = gzopen(path, mode);
1555 * would be created if gzopen/gzwrite/gzclose were being used to
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A DxmlIO.c623 fd = gzopen (path, mode);
712 static xmlWrapGzOpenFunc xmlWrapGzOpen = gzopen;
740 xmlWrapGzOpen = gzopen;
1175 fd = gzopen(path, "rb");
1247 fd = gzopen(path, mode);
1422 * would be created if gzopen/gzwrite/gzclose were being used to

Completed in 233 milliseconds

12