/src/distrib/utils/zcat/ |
zcat.c | 98 zfp = gzdopen(STDIN_FILENO, "rb"); 100 error("can't gzdopen stdin");
|
zcat.c | 98 zfp = gzdopen(STDIN_FILENO, "rb"); 100 error("can't gzdopen stdin");
|
/src/common/dist/zlib/test/ |
minigzip.c | 208 static gzFile gzdopen(int fd, const char *mode) { function in typeref:typename:gzFile 536 file = gzdopen(fileno(stdin), "rb"); 537 if (file == NULL) error("can't gzdopen stdin"); 540 file = gzdopen(fileno(stdout), outmode); 541 if (file == NULL) error("can't gzdopen stdout"); 566 file = gzdopen(fileno(stdout), outmode); 567 if (file == NULL) error("can't gzdopen stdout");
|
minigzip.c | 208 static gzFile gzdopen(int fd, const char *mode) { function in typeref:typename:gzFile 536 file = gzdopen(fileno(stdin), "rb"); 537 if (file == NULL) error("can't gzdopen stdin"); 540 file = gzdopen(fileno(stdout), outmode); 541 if (file == NULL) error("can't gzdopen stdout"); 566 file = gzdopen(fileno(stdout), outmode); 567 if (file == NULL) error("can't gzdopen stdout");
|
/src/common/dist/zlib/contrib/iostream2/ |
zstream.h | 73 m_fp = ::gzdopen(fileno(fp), "rb"); 191 m_fp = ::gzdopen(fileno(fp), mode);
|
zstream.h | 73 m_fp = ::gzdopen(fileno(fp), "rb"); 191 m_fp = ::gzdopen(fileno(fp), mode);
|
/src/usr.bin/grep/ |
file.c | 217 (gzbufdesc = gzdopen(f->fd, "r")) == NULL)
|
file.c | 217 (gzbufdesc = gzdopen(f->fd, "r")) == NULL)
|
/src/common/dist/zlib/contrib/ada/ |
zlib-thin.ads | 184 function gzdopen (fd : Int; mode : Chars_Ptr) return gzFile; subprogspec 403 pragma Import (C, gzdopen, "gzdopen");
|
zlib-thin.ads | 184 function gzdopen (fd : Int; mode : Chars_Ptr) return gzFile; subprogspec 403 pragma Import (C, gzdopen, "gzdopen");
|
/src/common/dist/zlib/contrib/iostream/ |
zfstream.cpp | 93 if ( (file = gzdopen(file_descriptor, char_mode)) == NULL )
|
zfstream.cpp | 93 if ( (file = gzdopen(file_descriptor, char_mode)) == NULL )
|
/src/common/dist/zlib/contrib/iostream3/ |
zfstream.cc | 89 // Build mode string for gzdopen and check it [27.8.1.3.2] 95 if ((file = gzdopen(fd, char_mode)) == NULL)
|
zfstream.cc | 89 // Build mode string for gzdopen and check it [27.8.1.3.2] 95 if ((file = gzdopen(fd, char_mode)) == NULL)
|
/src/sys/net/ |
zlib.h | 980 ZEXTERN gzFile ZEXPORT gzdopen(int, const char *); 982 gzdopen() associates a gzFile with the file descriptor fd. File 988 descriptor fd. If you want to keep fd open, use gzdopen(dup(fd), mode). 989 gzdopen returns NULL if there was insufficient memory to allocate
|
zlib.h | 980 ZEXTERN gzFile ZEXPORT gzdopen(int, const char *); 982 gzdopen() associates a gzFile with the file descriptor fd. File 988 descriptor fd. If you want to keep fd open, use gzdopen(dup(fd), mode). 989 gzdopen returns NULL if there was insufficient memory to allocate
|
/src/common/dist/zlib/ |
zconf.h | 78 # define gzdopen z_gzdopen macro
|
zconf.h | 78 # define gzdopen z_gzdopen macro
|
gzlib.c | 270 gzFile ZEXPORT gzdopen(int fd, const char *mode) { function in typeref:typename:gzFile ZEXPORT
|
gzlib.c | 270 gzFile ZEXPORT gzdopen(int fd, const char *mode) { function in typeref:typename:gzFile ZEXPORT
|
zconf.h.in | 74 # define gzdopen z_gzdopen macro
|
zlib.h | 1347 ZEXTERN gzFile ZEXPORT gzdopen(int fd, const char *mode); 1355 fd. If you want to keep fd open, use fd = dup(fd_keep); gz = gzdopen(fd, 1357 gzdopen does not close fd if it fails. If you are using fileno() to get the 1363 gzdopen returns NULL if there was insufficient memory to allocate the 1366 used until the next gz* read, write, seek, or close operation, so gzdopen 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 the 1585 the middle of a file using gzdopen(). 1595 when appending or when using gzdopen() for reading. When reading, the 1623 If gzdirect() is used immediately after gzopen() or gzdopen() it wil [all...] |
zconf.h.in | 74 # define gzdopen z_gzdopen macro
|
/src/sys/arch/powerpc/stand/mkbootimage/ |
mkbootimage.c | 361 gzf = gzdopen(dup(prep_fd), "a"); 528 gzf = gzdopen(dup(rs6000_fd), "a"); 748 gzf = gzdopen(dup(bebox_fd), "a");
|
mkbootimage.c | 361 gzf = gzdopen(dup(prep_fd), "a"); 528 gzf = gzdopen(dup(rs6000_fd), "a"); 748 gzf = gzdopen(dup(bebox_fd), "a");
|