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

12

/external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
H A DUtil.java34 static String readFully(Reader reader) throws IOException { method in class:Util
/external/guava/guava-tests/test/com/google/common/io/
H A DCharSequenceReaderTest.java51 assertEquals(string, readFully(reader));
56 assertEquals(string, readFully(reader));
63 assertEquals(string.substring(5), readFully(reader));
68 assertEquals(string.substring(5), readFully(reader));
254 private static String readFully(CharSequenceReader reader) throws IOException { method in class:CharSequenceReaderTest
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DChannelHelper.java30 public static ByteBuffer readFully(final ReadableByteChannel channel, long size) throws IOException { method in class:ChannelHelper
38 readFully(channel, buf, buf.limit());
48 public static void readFully(final ReadableByteChannel channel, final ByteBuffer buf) method in class:ChannelHelper
50 readFully(channel, buf, buf.remaining());
53 public static int readFully(final ReadableByteChannel channel, final ByteBuffer buf, final int length) method in class:ChannelHelper
/external/okhttp/okio/okio/src/test/java/okio/
H A DSocketTimeoutTest.java104 readFully(socket.getInputStream(), writableByteCount);
128 private static byte[] readFully(InputStream in, int byteCount) throws IOException { method in class:SocketTimeoutTest
H A DBufferedSourceTest.java250 @Test public void readFully() throws Exception { method in class:BufferedSourceTest
253 source.readFully(sink, 9999);
262 source.readFully(sink, 5);
279 source.readFully(sink);
288 source.readFully(sink);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DStreams.java70 public static int readFully(InputStream inStr, byte[] buf) method in class:Streams
73 return readFully(inStr, buf, 0, buf.length);
86 public static int readFully(InputStream inStr, byte[] buf, int off, int len) method in class:Streams
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1InputStream.java115 protected void readFully( method in class:ASN1InputStream
119 if (Streams.readFully(this, bytes) != bytes.length)
390 Streams.readFully(defIn, buf);
/external/guava/guava/src/com/google/common/io/
H A DByteArrayDataInput.java36 @Override void readFully(byte b[]); method in interface:ByteArrayDataInput
38 @Override void readFully(byte b[], int off, int len); method in interface:ByteArrayDataInput
H A DLittleEndianDataInputStream.java65 public void readFully(byte[] b) throws IOException { method in class:LittleEndianDataInputStream
66 ByteStreams.readFully(this, b);
70 public void readFully(byte[] b, int off, int len) throws IOException { method in class:LittleEndianDataInputStream
71 ByteStreams.readFully(this, b, off, len);
H A DByteStreams.java350 @Override public void readFully(byte b[]) { method in class:ByteStreams.ByteArrayDataInputStream
352 input.readFully(b);
358 @Override public void readFully(byte b[], int off, int len) { method in class:ByteStreams.ByteArrayDataInputStream
360 input.readFully(b, off, len);
775 * with the same behavior as {@link DataInput#readFully(byte[])}.
784 public static void readFully(InputStream in, byte[] b) throws IOException { method in class:ByteStreams
785 readFully(in, b, 0, b.length);
791 * {@link DataInput#readFully(byte[], int, int)}. Does not close the
802 public static void readFully( method in class:ByteStreams
/external/proguard/src/proguard/classfile/io/
H A DRuntimeDataInput.java104 public void readFully(byte[] b) method in class:RuntimeDataInput
108 dataInput.readFully(b);
116 public void readFully(byte[] b, int off, int len) method in class:RuntimeDataInput
120 dataInput.readFully(b, off, len);
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DLittleEndien.java131 public void readFully(byte b[]) throws IOException { method in class:LittleEndien
135 public void readFully(byte b[], int off, int len) throws IOException { method in class:LittleEndien
/external/okhttp/okio/okio/src/main/java/okio/
H A DBufferedSource.java119 void readFully(byte[] sink) throws IOException; method in interface:BufferedSource
132 void readFully(Buffer sink, long byteCount) throws IOException; method in interface:BufferedSource
H A DRealBufferedSource.java105 @Override public void readFully(byte[] sink) throws IOException { method in class:RealBufferedSource
118 buffer.readFully(sink);
133 @Override public void readFully(Buffer sink, long byteCount) throws IOException { method in class:RealBufferedSource
141 buffer.readFully(sink, byteCount);
H A DBuffer.java532 @Override public void readFully(Buffer sink, long byteCount) throws EOFException { method in class:Buffer
720 readFully(result);
728 @Override public void readFully(byte[] sink) throws EOFException { method in class:Buffer
/external/emma/core/java12/com/vladium/emma/rt/
H A DInstrClassLoader.java266 readFully (in, baos, buf.m_buf);
391 private static void readFully (final InputStream in, final ByteArrayOStream out, final byte [] buf) method in class:InstrClassLoader
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DDataInputCompressor.java62 public void readFully(byte[] b) throws IOException { method in class:DataInputCompressor
63 dataInput.readFully(b);
66 public void readFully(byte[] b, int off, int len) throws IOException { method in class:DataInputCompressor
67 dataInput.readFully(b, off, len);
/external/emma/lib/internal/
H A Dstamptool.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/util/ com/vladium/util/version/ ...
/external/conscrypt/src/test/java/org/conscrypt/
H A DTrustedCertificateStoreTest.java700 new ByteArrayInputStream(readFully(actualFile)));
744 private static byte[] readFully(File file) throws IOException { method in class:TrustedCertificateStoreTest
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-io-1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/io/ ...
/external/vogar/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/annotations/ ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...

Completed in 2039 milliseconds

12