Searched defs:readFully (Results 1 – 9 of 9) sorted by relevance
/libcore/luni/src/main/java/libcore/io/ |
D | Streams.java | 59 public static void readFully(InputStream in, byte[] dst) throws IOException { in readFully() method in Streams 69 …public static void readFully(InputStream in, byte[] dst, int offset, int byteCount) throws IOExcep… in readFully() method in Streams 93 public static byte[] readFully(InputStream in) throws IOException { in readFully() method in Streams 117 public static String readFully(Reader reader) throws IOException { in readFully() method in Streams
|
D | IoUtils.java | 232 public FileReader readFully() throws IOException { in readFully() method in IoUtils.FileReader
|
/libcore/luni/src/main/java/java/io/ |
D | DataInput.java | 112 public abstract void readFully(byte[] dst) throws IOException; in readFully() method 140 public abstract void readFully(byte[] dst, int offset, int byteCount) throws IOException; in readFully() method
|
D | DataInputStream.java | 94 public final void readFully(byte[] dst) throws IOException { in readFully() method in DataInputStream 98 public final void readFully(byte[] dst, int offset, int byteCount) throws IOException { in readFully() method in DataInputStream
|
D | RandomAccessFile.java | 380 public final void readFully(byte[] dst) throws IOException { in readFully() method in RandomAccessFile 410 public final void readFully(byte[] dst, int offset, int byteCount) throws IOException { in readFully() method in RandomAccessFile
|
D | ObjectInputStream.java | 1165 public void readFully(byte[] dst) throws IOException { in readFully() method in ObjectInputStream 1185 public void readFully(byte[] dst, int offset, int byteCount) throws IOException { in readFully() method in ObjectInputStream
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | DataInputStreamTest.java | 486 public void readFully(byte[] buffer) throws IOException { in readFully() method in DataInputStreamTest.TestDataInputStream 489 public void readFully(byte[] buffer, int offset, int count) in readFully() method in DataInputStreamTest.TestDataInputStream
|
/libcore/luni/src/test/etc/loading-test-jar/ |
D | TestMethods.java | 66 public static byte[] readFully(InputStream in) throws IOException { in readFully() method in TestMethods
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
D | BinaryHprofReader.java | 262 private static void readFully(InputStream in, byte[] dst) throws IOException { in readFully() method in BinaryHprofReader
|