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

/freebsd-10-stable/lib/libz/
H A Dzopen.c17 return gzread(cookie, data, size);
H A DMakefile31 SRCS+= gzread.c
/freebsd-10-stable/contrib/zlib/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-stable/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-stable/usr.bin/grep/
H A Dfile.c95 nr = gzread(gzbufdesc, buffer, MAXBUFSIZ);
108 * As opposed to gzread(), which simply returns the
/freebsd-10-stable/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-stable/contrib/zlib/
H A Dzconf.h90 # define gzread z_gzread macro
H A Dzlib.h868 CRC-32 instead of an Adler-32. Unlike the gunzip utility and gzread() (see
1330 case gzread will directly read from the file without decompression. When
1391 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1394 the input file is not in gzip format, gzread copies the given number of
1397 After reaching the end of a gzip stream in the input, gzread will continue
1399 concatenated in the input file, and will all be decompressed by gzread().
1403 gzread can be used to read a gzip file that is being concurrently written.
1404 Upon reaching the end of the input, gzread will return with the available
1407 gzread to be tried again. Z_OK indicates that a gzip stream was completed
1408 on the last gzread
[all...]
H A Dgzread.c0 /* gzread.c -- zlib functions for reading gzip files
6 /* $FreeBSD: stable/10/contrib/zlib/gzread.c 313796 2017-02-16 06:16:50Z delphij $ */
378 int ZEXPORT gzread(file, buf, len) function
/freebsd-10-stable/gnu/usr.bin/grep/
H A Dgrep.c484 bytesread = gzread (gzbufdesc, readbuf, readsize);

Completed in 96 milliseconds