Searched refs:readBytes (Results 1 – 3 of 3) sorted by relevance
197 int readBytes = 0; in readStreamExhaustively() local199 while (readBytes != outBuffer.length) { in readStreamExhaustively()200 readBytesLastCycle = inputStream.read(outBuffer, readBytes, in readStreamExhaustively()201 outBuffer.length - readBytes); in readStreamExhaustively()204 + " (expected " + outBuffer.length + ", read " + readBytes + ")"); in readStreamExhaustively()205 readBytes += readBytesLastCycle; in readStreamExhaustively()211 for (int readBytes = input.read(buffer); readBytes >= 0; readBytes = input.read(buffer)) { in copy()212 output.write(buffer, 0, readBytes); in copy()
485 for (int readBytes = input.read(buffer); readBytes >= 0; readBytes = input.read(buffer)) { in checkMagicAndCopyFileTo()486 output.write(buffer, 0, readBytes); in checkMagicAndCopyFileTo()
713 for (int readBytes = in.read(buffer); readBytes >= 0; readBytes = in.read(buffer)) in copyFileFallback()714 out.write(buffer, 0, readBytes); in copyFileFallback()