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

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dgzio.c416 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

Completed in 24 milliseconds