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

/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERInputStream.java72 protected void readFully( method in class:DERInputStream
272 readFully(bytes);
H A DASN1InputStream.java125 protected void readFully( method in class:ASN1InputStream
495 readFully(bytes);
/dalvik/libcore/luni/src/main/java/java/io/
H A DDataInput.java122 public abstract void readFully(byte[] buffer) throws IOException; method in interface:DataInput
143 public abstract void readFully(byte[] buffer, int offset, int count) method in interface:DataInput
H A DDataInputStream.java209 public final void readFully(byte[] buffer) throws IOException { method in class:DataInputStream
210 readFully(buffer, 0, buffer.length);
236 * @see java.io.DataInput#readFully(byte[], int, int)
238 public final void readFully(byte[] buffer, int offset, int length) method in class:DataInputStream
443 in.readFully(buf, 0, utfSize);
H A DRandomAccessFile.java477 public final void readFully(byte[] buffer) throws IOException { method in class:RandomAccessFile
478 readFully(buffer, 0, buffer.length);
503 public final void readFully(byte[] buffer, int offset, int count) method in class:RandomAccessFile
796 * @see #readFully(byte[])
797 * @see #readFully(byte[],int,int)
820 * @see #readFully(byte[], int, int)
914 * @see #readFully(byte[])
915 * @see #readFully(byte[],int,int)
H A DObjectInputStream.java722 input.readFully(result);
738 input.readFully(result);
1367 public void readFully(byte[] buffer) throws IOException { method in class:ObjectInputStream
1368 primitiveTypes.readFully(buffer);
1389 public void readFully(byte[] buffer, int offset, int length) method in class:ObjectInputStream
1391 primitiveTypes.readFully(buffer, offset, length);
1653 input.readFully(byteArray, 0, size);
/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DGZIPInputStream.java83 readFully(header, 0, header.length);
93 readFully(header, 0, 2);
117 readFully(header, 0, 2);
199 readFully(b, copySize, trailerSize - copySize);
209 private void readFully(byte[] buffer, int offset, int length) method in class:GZIPInputStream
/dalvik/libcore/archive/src/main/java/java/util/jar/
H A DManifest.java214 buf = readFully(is);
244 private byte[] readFully(InputStream is) throws IOException { method in class:Manifest

Completed in 128 milliseconds