Lines Matching refs:readFully
52 // Length of the buffer used for readFully(type[], int, int)
56 * Byte buffer used for readFully(type[], int, int). Note that this
343 public void readFully(byte[] b, int off, int len) throws IOException {
360 public void readFully(byte[] b) throws IOException {
361 readFully(b, 0, b.length);
364 public void readFully(short[] s, int off, int len) throws IOException {
373 readFully(byteBuf, 0, nelts*2);
380 public void readFully(char[] c, int off, int len) throws IOException {
389 readFully(byteBuf, 0, nelts*2);
396 public void readFully(int[] i, int off, int len) throws IOException {
405 readFully(byteBuf, 0, nelts*4);
412 public void readFully(long[] l, int off, int len) throws IOException {
421 readFully(byteBuf, 0, nelts*8);
428 public void readFully(float[] f, int off, int len) throws IOException {
437 readFully(byteBuf, 0, nelts*4);
444 public void readFully(double[] d, int off, int len) throws IOException {
453 readFully(byteBuf, 0, nelts*8);