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

123

/external/conscrypt/testing/src/main/java/libcore/io/
H A DStreams.java30 public static byte[] readFully(InputStream in) throws IOException { method in class:Streams
/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.java254 @Test public void readFully() throws Exception { method in class:BufferedSourceTest
257 source.readFully(sink, 9999);
266 source.readFully(sink, 5);
283 source.readFully(sink);
292 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.java212 @Override public void readFully(byte b[]) { method in class:ByteStreams.ByteArrayDataInputStream
214 input.readFully(b);
220 @Override public void readFully(byte b[], int off, int len) { method in class:ByteStreams.ByteArrayDataInputStream
222 input.readFully(b, off, len);
612 * with the same behavior as {@link DataInput#readFully(byte[])}.
621 public static void readFully(InputStream in, byte[] b) throws IOException { method in class:ByteStreams
622 readFully(in, b, 0, b.length);
628 * {@link DataInput#readFully(byte[], int, int)}. Does not close the
639 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/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/bsdiff/
H A DBsPatch.java90 readFully(patchData, signatureBuffer, 0, signatureBuffer.length);
207 oldData.readFully(buffer1, 0, numBytesThisRound);
208 readFully(patchData, buffer2, 0, numBytesThisRound);
256 static void readFully( method in class:BsPatch
284 readFully(in, buffer, 0, maxCopy);
/external/ltp/tools/netpipe-2.4/
H A DTCP.c119 static int readFully(int fd, void *obuf, int len) function
141 readFully(p->commfd, response, strlen(s)) < 0) {
224 bytesRead = readFully(p->commfd, (void *)&ntime, sizeof(unsigned int));
259 bytesRead = readFully(p->commfd, (void *)&nrpt, sizeof(unsigned int));
/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/ltp/tools/netpipe-2.4-ipv6/
H A DTCP.c146 static int readFully(int fd, void *obuf, int len) function
168 readFully(p->commfd, response, strlen(s)) < 0) {
251 bytesRead = readFully(p->commfd, (void *)&ntime, sizeof(unsigned int));
286 bytesRead = readFully(p->commfd, (void *)&nrpt, sizeof(unsigned int));
/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/platform/src/test/java/org/conscrypt/
H A DTrustedCertificateStoreTest.java796 new ByteArrayInputStream(readFully(actualFile)));
856 private static byte[] readFully(File file) throws IOException { method in class:TrustedCertificateStoreTest
/external/guice/extensions/persist/lib/
H A Dcommons-io.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
/external/robolectric/v1/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/guice/extensions/struts2/lib/
H A Dcommons-io-1.3.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/io/ ...
/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/ ...

Completed in 899 milliseconds

123