Searched refs:gzread (Results 1 - 12 of 12) sorted by relevance

/freebsd-10.1-release/lib/libz/
H A Dzopen.c17 return gzread(cookie, data, size);
H A DSymbol.map59 gzread;
H A DMakefile27 SRCS+= gzread.c
H A Dgzread.c0 /* gzread.c -- zlib functions for reading gzip files
291 int ZEXPORT gzread(file, buf, len) function
414 /* nothing there -- try gzread() */
415 ret = gzread(file, buf, 1);
H A Dzconf.h84 # define gzread z_gzread macro
H A Dzlib.h1253 case gzread will directly read from the file without decompression. When
1313 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1316 the input file is not in gzip format, gzread copies the given number of
1319 After reaching the end of a gzip stream in the input, gzread will continue
1321 concatenated in the input file, and will all be decompressed by gzread().
1325 gzread can be used to read a gzip file that is being concurrently written.
1326 Upon reaching the end of the input, gzread will return with the available
1329 gzread to be tried again. Z_OK indicates that a gzip stream was completed
1330 on the last gzread. Z_BUF_ERROR indicates that the input file ended in the
1331 middle of a gzip stream. Note that gzread doe
[all...]
/freebsd-10.1-release/lib/libz/test/
H A Dminigzip.c258 int gzread OF((gzFile, void *, unsigned));
260 int gzread(gz, buf, len) function
439 len = gzread(in, buf, sizeof(buf));
H A Dexample.c151 if (gzread(file, uncompr, (unsigned)uncomprLen) != len) {
152 fprintf(stderr, "gzread err: %s\n", gzerror(file, &err));
156 fprintf(stderr, "bad gzread: %s\n", (char*)uncompr);
159 printf("gzread(): %s\n", (char*)uncompr);
/freebsd-10.1-release/sys/net/
H A Dzlib.h878 in this case gzread will directly read from the file without decompression.
898 extern int EXPORT gzread OF((gzFile file, voidp buf, unsigned len));
901 If the input file was not in gzip format, gzread copies the given number
903 gzread returns the number of uncompressed bytes actually read (0 for
/freebsd-10.1-release/usr.bin/grep/
H A Dfile.c93 nr = gzread(gzbufdesc, buffer, MAXBUFSIZ);
106 * As opposed to gzread(), which simply returns the
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzlib.h1080 case gzread will directly read from the file without decompression.
1108 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1111 If the input file was not in gzip format, gzread copies the given number
1113 gzread returns the number of uncompressed bytes actually read (0 for
1188 Sets the starting position for the next gzread or gzwrite on the
1212 Returns the starting position for the next gzread or gzwrite on the
/freebsd-10.1-release/gnu/usr.bin/grep/
H A Dgrep.c484 bytesread = gzread (gzbufdesc, readbuf, readsize);

Completed in 187 milliseconds