Lines Matching full:gzread
1253 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 does not return -1 in the event
1333 will return Z_BUF_ERROR if the last gzread ended in the middle of a gzip
1337 gzread returns the number of uncompressed bytes actually read, less than
1420 gzip stream will be started in the output. gzread() is able to read such
1431 Sets the starting position for the next gzread or gzwrite on the given
1457 Returns the starting position for the next gzread or gzwrite on the given