/src/sbin/savecore/ |
zopen.c | 33 gzFile gz = gzopen(fname, mode);
|
/src/distrib/utils/zcat/ |
zcat.c | 107 zfp = gzopen(*argv, "rb"); 109 error("can't gzopen `%s'", *argv);
|
/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/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);
|
example.c | 93 file = gzopen(fname, "wb"); 95 fprintf(stderr, "gzopen error\n"); 110 file = gzopen(fname, "rb"); 112 fprintf(stderr, "gzopen error\n");
|
/src/common/dist/zlib/contrib/iostream2/ |
zstream.h | 67 m_fp = ::gzopen(name, "rb"); 181 m_fp = ::gzopen(name, mode);
|
/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/contrib/pascal/ |
example.pas | 92 zfile := gzopen(fname, 'wb'); 95 WriteLn('gzopen error'); 120 zfile := gzopen(fname, 'rb'); 123 WriteLn('gzopen error');
|
/src/common/dist/zlib/contrib/iostream/ |
zfstream.cpp | 51 if ( (file = gzopen(name, char_mode)) == NULL )
|
/src/common/dist/zlib/ |
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 | 89 # define gzopen z_gzopen macro
|
gzlib.c | 260 gzFile ZEXPORT gzopen(const char *path, const char *mode) { function in typeref:typename:gzFile ZEXPORT
|
zconf.h.in | 85 # define gzopen z_gzopen macro
|
zconf.h.cmakein | 87 # define gzopen z_gzopen
|
/src/common/dist/zlib/contrib/iostream3/ |
zfstream.cc | 61 // Build mode string for gzopen and check it [27.8.1.3.2] 67 if ((file = gzopen(name, char_mode)) == NULL)
|
/src/sys/net/ |
zlib.h | 964 ZEXTERN gzFile ZEXPORT gzopen(const char *, const char *); 972 gzopen can be used to read a file which is not in gzip format; in this 975 gzopen returns NULL if the file could not be opened or if there was 985 The mode parameter is as in gzopen.
|
/src/common/dist/zlib/contrib/untgz/ |
untgz.c | 652 f = gzopen(TGZfile,"rb"); 655 fprintf(stderr,"%s: Couldn't gzopen %s\n",prog,TGZfile);
|
/src/common/dist/zlib/os400/ |
zlib.inc | 143 D gzopen PR extproc('gzopen') 148 D gzopen PR extproc('gzopen64')
|
/src/libexec/makewhatis/ |
makewhatis.c | 1105 if ((in = gzopen(name, "r")) == NULL) {
|