Home | History | Annotate | Download | only in io

Lines Matching defs:readFully

131      * java.io.DataInputStream#readFully(byte[])
138 dis.readFully(rbytes);
144 * java.io.DataInputStream#readFully(byte[], int, int)
151 dis.readFully(rbytes, 0, fileString.length());
157 * java.io.DataInputStream#readFully(byte[], int, int)
166 is.readFully(byteArray, -1, -1);
173 is.readFully(byteArray, 0, -1);
180 is.readFully(byteArray, 1, -1);
186 is.readFully(byteArray, -1, 0);
187 is.readFully(byteArray, 0, 0);
188 is.readFully(byteArray, 1, 0);
191 is.readFully(byteArray, -1, 1);
197 is.readFully(byteArray, 0, 1);
198 is.readFully(byteArray, 1, 1);
200 is.readFully(byteArray, 0, Integer.MAX_VALUE);
208 * java.io.DataInputStream#readFully(byte[], int, int)
217 is.readFully(nullByteArray, -1, -1);
224 is.readFully(nullByteArray, 0, -1);
231 is.readFully(nullByteArray, 1, -1);
237 is.readFully(nullByteArray, -1, 0);
238 is.readFully(nullByteArray, 0, 0);
239 is.readFully(nullByteArray, 1, 0);
242 is.readFully(nullByteArray, -1, 1);
249 is.readFully(nullByteArray, 0, 1);
256 is.readFully(nullByteArray, 1, 1);
263 is.readFully(nullByteArray, 0, Integer.MAX_VALUE);
271 * java.io.DataInputStream#readFully(byte[], int, int)
278 is.readFully(byteArray, -1, -1);
285 is.readFully(byteArray, 0, -1);
292 is.readFully(byteArray, 1, -1);
298 is.readFully(byteArray, -1, 0);
299 is.readFully(byteArray, 0, 0);
300 is.readFully(byteArray, 1, 0);
303 is.readFully(byteArray, -1, 1);
310 is.readFully(byteArray, 0, 1);
317 is.readFully(byteArray, 1, 1);
324 is.readFully(byteArray, 0, Integer.MAX_VALUE);
332 * java.io.DataInputStream#readFully(byte[], int, int)
339 is.readFully(nullByteArray, -1, -1);
346 is.readFully(nullByteArray, 0, -1);
353 is.readFully(nullByteArray, 1, -1);
359 is.readFully(nullByteArray, -1, 0);
360 is.readFully(nullByteArray, 0, 0);
361 is.readFully(nullByteArray, 1, 0);
364 is.readFully(nullByteArray, -1, 1);
371 is.readFully(nullByteArray, 0, 1);
378 is.readFully(nullByteArray, 1, 1);
385 is.readFully(nullByteArray, 0, Integer.MAX_VALUE);
487 public void readFully(byte[] buffer) throws IOException {
490 public void readFully(byte[] buffer, int offset, int count)