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

/libcore/luni/src/main/native/
H A Djava_util_zip_Deflater.cpp101 jint bytesRead = stream->stream.next_in - initialNextIn; local
104 stream->totalIn += bytesRead;
109 inReadValue += bytesRead;
H A Djava_util_zip_Inflater.cpp122 jint bytesRead = stream->stream.next_in - initialNextIn; local
125 stream->totalIn += bytesRead;
130 inReadValue += bytesRead;
/libcore/luni/src/main/java/java/util/zip/
H A DZipFile.java575 private long bytesRead = 0; field in class:ZipFile.ZipInflaterInputStream
588 + bytesRead, e);
591 if (entry.size != bytesRead) {
592 throw new IOException("Size mismatch on inflated file: " + bytesRead + " vs "
596 bytesRead += i;
608 return super.available() == 0 ? 0 : (int) (entry.getSize() - bytesRead);

Completed in 58 milliseconds