(byte[] buf)
| 649 | } |
| 650 | |
| 651 | void readFully(byte[] buf) throws IOException |
| 652 | { |
| 653 | if (read(buf, 0, buf.length) != buf.length) |
| 654 | throw new EOFException(); |
| 655 | } |
| 656 | |
| 657 | void readFully(byte[] buf, int off, int len) throws IOException |
| 658 | { |
no test coverage detected