Searched defs:readFully (Results 1 – 8 of 8) 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
|
| /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 | 115 public final void readFully(byte[] dst) throws IOException { in readFully() method in DataInputStream 119 public final void readFully(byte[] dst, int offset, int byteCount) throws IOException { in readFully() method in DataInputStream
|
| D | RandomAccessFile.java | 384 public final void readFully(byte[] dst) throws IOException { in readFully() method in RandomAccessFile 414 public final void readFully(byte[] dst, int offset, int byteCount) throws IOException { in readFully() method in RandomAccessFile
|
| D | ObjectInputStream.java | 1189 public void readFully(byte[] dst) throws IOException { in readFully() method in ObjectInputStream 1209 public void readFully(byte[] dst, int offset, int byteCount) throws IOException { in readFully() method in ObjectInputStream
|
| /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/luni/src/main/java/java/util/zip/ |
| D | GZIPInputStream.java | 201 private void readFully(byte[] buffer, int offset, int length) throws IOException { in readFully() method in GZIPInputStream
|
| /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
|