Searched refs:gzread (Results 1 - 2 of 2) sorted by relevance
| /openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/ |
| H A D | gzio.c | 416 gzread returns the number of bytes actually read (0 for end of file). 418 int ZEXPORT gzread (file, buf, len) function 532 return gzread(file, &c, 1) == 1 ? c : -1; 572 while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ; 784 Sets the starting position for the next gzread or gzwrite on the given 871 size = gzread(file, s->outbuf, (uInt)size); 901 Returns the starting position for the next gzread or gzwrite on the
|
| H A D | zlib.h | 1102 case gzread will directly read from the file without decompression. 1130 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len)); 1133 If the input file was not in gzip format, gzread copies the given number 1135 gzread returns the number of uncompressed bytes actually read (0 for 1210 Sets the starting position for the next gzread or gzwrite on the 1234 Returns the starting position for the next gzread or gzwrite on the
|
Completed in 43 milliseconds