Searched defs:readFully (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DStreams.java59 public static void readFully(InputStream in, byte[] dst) throws IOException { method in class:Streams
60 readFully(in, dst, 0, dst.length);
67 * Used to implement {@link java.io.DataInputStream#readFully(byte[], int, int)}.
69 public static void readFully(InputStream in, byte[] dst, int offset, int byteCount) throws IOException { method in class:Streams
93 public static byte[] readFully(InputStream in) throws IOException { method in class:Streams
117 public static String readFully(Reader reader) throws IOException { method in class:Streams
/libcore/luni/src/test/etc/loading-test-jar/
H A DTestMethods.java66 public static byte[] readFully(InputStream in) throws IOException { method in class:TestMethods
129 byte[] contents = readFully(in);
185 byte[] contents = readFully(in);
/libcore/luni/src/main/java/java/io/
H A DDataInput.java110 * Equivalent to {@code readFully(dst, 0, dst.length);}.
112 public abstract void readFully(byte[] dst) throws IOException; method in interface:DataInput
140 public abstract void readFully(byte[] dst, int offset, int byteCount) throws IOException; method in interface:DataInput
H A DDataInputStream.java115 public final void readFully(byte[] dst) throws IOException { method in class:DataInputStream
116 readFully(dst, 0, dst.length);
119 public final void readFully(byte[] dst, int offset, int byteCount) throws IOException { method in class:DataInputStream
120 Streams.readFully(in, dst, offset, byteCount);
124 Streams.readFully(in, scratch, 0, SizeOf.INT);
164 Streams.readFully(in, scratch, 0, SizeOf.LONG);
169 Streams.readFully(in, scratch, 0, SizeOf.SHORT);
195 in.readFully(buf, 0, utfSize);
H A DRandomAccessFile.java382 * Equivalent to {@code readFully(dst, 0, dst.length);}.
384 public final void readFully(byte[] dst) throws IOException { method in class:RandomAccessFile
385 readFully(dst, 0, dst.length);
414 public final void readFully(byte[] dst, int offset, int byteCount) throws IOException { method in class:RandomAccessFile
439 readFully(scratch, 0, SizeOf.INT);
500 readFully(scratch, 0, SizeOf.LONG);
517 readFully(scratch, 0, SizeOf.SHORT);
H A DObjectInputStream.java580 input.readFully(result);
596 input.readFully(result);
1192 public void readFully(byte[] dst) throws IOException { method in class:ObjectInputStream
1193 primitiveTypes.readFully(dst);
1212 public void readFully(byte[] dst, int offset, int byteCount) throws IOException { method in class:ObjectInputStream
1213 primitiveTypes.readFully(dst, offset, byteCount);
1473 input.readFully(byteArray, 0, size);
/libcore/luni/src/main/java/java/util/zip/
H A DGZIPInputStream.java98 readFully(header, 0, header.length);
109 readFully(header, 0, 2);
133 readFully(header, 0, 2);
191 readFully(b, copySize, trailerSize - copySize);
201 private void readFully(byte[] buffer, int offset, int length) throws IOException { method in class:GZIPInputStream
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DBinaryHprofReader.java251 readFully(in, bytes);
262 private static void readFully(InputStream in, byte[] dst) throws IOException { method in class:BinaryHprofReader

Completed in 154 milliseconds