Home | History | Annotate | Download | only in io

Lines Matching defs:bytes

57      * Fills 'dst' with bytes from 'in', throwing EOFException if insufficient bytes are available.
64 * Reads exactly 'byteCount' bytes from 'in' (into 'dst' at offset 'offset'), and throws
65 * EOFException if insufficient bytes are available.
105 ByteArrayOutputStream bytes = new ByteArrayOutputStream();
109 bytes.write(buffer, 0, count);
111 return bytes.toByteArray();
138 * Skip <b>at most</b> {@code byteCount} bytes from {@code in} by calling read
139 * repeatedly until either the stream is exhausted or we read fewer bytes than
176 * Copies all of the bytes from {@code in} to {@code out}. Neither stream is closed.
177 * Returns the total number of bytes transferred.