Searched refs:gzdopen (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.1-release/lib/libz/
H A DSymbol.map46 gzdopen;
H A Dzconf.h66 # define gzdopen z_gzdopen macro
H A Dgzlib.c287 gzFile ZEXPORT gzdopen(fd, mode) function
H A Dzlib.h1264 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1266 gzdopen associates a gzFile with the file descriptor fd. File descriptors
1272 fd. If you want to keep fd open, use fd = dup(fd_keep); gz = gzdopen(fd,
1274 gzdopen does not close fd if it fails. If you are using fileno() to get the
1280 gzdopen returns NULL if there was insufficient memory to allocate the
1283 used until the next gz* read, write, seek, or close operation, so gzdopen
1291 gzopen() or gzdopen(), and before any other calls that read or write the
1406 yet. If gzungetc is used immediately after gzopen or gzdopen, at least the
1460 reading a gzip stream from the middle of a file using gzdopen().
1470 appending or when using gzdopen() fo
[all...]
/freebsd-10.1-release/lib/libz/test/
H A Dminigzip.c179 gzFile gzdopen OF((int, const char *));
189 gzFile gzdopen(fd, mode) function
608 file = gzdopen(fileno(stdin), "rb");
609 if (file == NULL) error("can't gzdopen stdin");
612 file = gzdopen(fileno(stdout), outmode);
613 if (file == NULL) error("can't gzdopen stdout");
638 file = gzdopen(fileno(stdout), outmode);
639 if (file == NULL) error("can't gzdopen stdout");
/freebsd-10.1-release/sys/net/
H A Dzlib.h885 extern gzFile EXPORT gzdopen OF((int fd, const char *mode));
887 gzdopen() associates a gzFile with the file descriptor fd. File
893 descriptor fd. If you want to keep fd open, use gzdopen(dup(fd), mode).
894 gzdopen returns NULL if there was insufficient memory to allocate
/freebsd-10.1-release/usr.bin/grep/
H A Dfile.c286 (gzbufdesc = gzdopen(f->fd, "r")) == NULL)
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzlib.h1087 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1089 gzdopen() associates a gzFile with the file descriptor fd. File
1095 descriptor fd. If you want to keep fd open, use gzdopen(dup(fd), mode).
1096 gzdopen returns NULL if there was insufficient memory to allocate
/freebsd-10.1-release/gnu/usr.bin/grep/
H A Dgrep.c289 gzbufdesc = gzdopen(fd, "r");

Completed in 177 milliseconds