Home
last modified time | relevance | path

Searched defs:readFully (Results 1 – 25 of 37) sorted by relevance

12

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
DChannelHelper.java30 …public static ByteBuffer readFully(final ReadableByteChannel channel, long size) throws IOExceptio… in readFully() method in ChannelHelper
48 public static void readFully(final ReadableByteChannel channel, final ByteBuffer buf) in readFully() method in ChannelHelper
53 …public static int readFully(final ReadableByteChannel channel, final ByteBuffer buf, final int len… in readFully() method in ChannelHelper
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/utils/
DIOUtils.java141 public static int readFully(final InputStream input, final byte[] b) throws IOException { in readFully() method in IOUtils
161 …public static int readFully(final InputStream input, final byte[] b, final int offset, final int l… in readFully() method in IOUtils
191 public static void readFully(ReadableByteChannel channel, ByteBuffer b) throws IOException { in readFully() method in IOUtils
/external/guava/guava/src/com/google/common/io/
DByteArrayDataInput.java36 @Override void readFully(byte b[]); in readFully() method
38 @Override void readFully(byte b[], int off, int len); in readFully() method
DLittleEndianDataInputStream.java65 public void readFully(byte[] b) throws IOException { in readFully() method in LittleEndianDataInputStream
70 public void readFully(byte[] b, int off, int len) throws IOException { in readFully() method in LittleEndianDataInputStream
DByteStreams.java212 @Override public void readFully(byte b[]) { in readFully() method in ByteStreams.ByteArrayDataInputStream
220 @Override public void readFully(byte b[], int off, int len) { in readFully() method in ByteStreams.ByteArrayDataInputStream
621 public static void readFully(InputStream in, byte[] b) throws IOException { in readFully() method in ByteStreams
639 public static void readFully( in readFully() method in ByteStreams
/external/proguard/src/proguard/classfile/io/
DRuntimeDataInput.java104 public void readFully(byte[] b) in readFully() method in RuntimeDataInput
116 public void readFully(byte[] b, int off, int len) in readFully() method in RuntimeDataInput
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
DStreams.java70 public static int readFully(InputStream inStr, byte[] buf) in readFully() method in Streams
86 public static int readFully(InputStream inStr, byte[] buf, int off, int len) in readFully() method in Streams
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/io/
DStreams.java72 public static int readFully(InputStream inStr, byte[] buf) in readFully() method in Streams
88 public static int readFully(InputStream inStr, byte[] buf, int off, int len) in readFully() method in Streams
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/
DInputStreams.java36 public static byte[] readFully(final InputStream is) throws IOException { in readFully() method in InputStreams
/external/conscrypt/testing/src/main/java/org/conscrypt/testing/
DStreams.java30 public static byte[] readFully(InputStream in) throws IOException { in readFully() method in Streams
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/testing/
DStreams.java34 public static byte[] readFully(InputStream in) throws IOException { in readFully() method in Streams
/external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
DUtil.java34 static String readFully(Reader reader) throws IOException { in readFully() method in Util
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/utils/
DIOUtilsTest.java110 private static void readFully(final byte[] source, ByteBuffer b) throws IOException { in readFully() method in IOUtilsTest
/external/okhttp/okio/okio/src/main/java/okio/
DBufferedSource.java119 void readFully(byte[] sink) throws IOException; in readFully() method
132 void readFully(Buffer sink, long byteCount) throws IOException; in readFully() method
DRealBufferedSource.java105 @Override public void readFully(byte[] sink) throws IOException { in readFully() method in RealBufferedSource
133 @Override public void readFully(Buffer sink, long byteCount) throws IOException { in readFully() method in RealBufferedSource
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
DBufferedSource.java121 void readFully(byte[] sink) throws IOException; in readFully() method
134 void readFully(Buffer sink, long byteCount) throws IOException; in readFully() method
DRealBufferedSource.java106 @Override public void readFully(byte[] sink) throws IOException { in readFully() method in RealBufferedSource
134 @Override public void readFully(Buffer sink, long byteCount) throws IOException { in readFully() method in RealBufferedSource
/external/guava/guava-tests/test/com/google/common/io/
DCharSequenceReaderTest.java254 private static String readFully(CharSequenceReader reader) throws IOException { in readFully() method in CharSequenceReaderTest
/external/okhttp/okio/okio/src/test/java/okio/
DSocketTimeoutTest.java128 private static byte[] readFully(InputStream in, int byteCount) throws IOException { in readFully() method in SocketTimeoutTest
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/
DTapeInputStream.java341 private void readFully(final byte[] b, final int off, final int len) in readFully() method
/external/archive-patcher/generator/src/main/java/com/google/archivepatcher/generator/bsdiff/
DRandomAccessObject.java228 public void readFully(byte[] b) { in readFully() method in RandomAccessObject.RandomAccessByteArrayObject
233 public void readFully(byte[] b, int off, int len) { in readFully() method in RandomAccessObject.RandomAccessByteArrayObject
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DFileMap.java274 public static void readFully(InputStream is, byte[] bytes) throws IOException { in readFully() method in FileMap
/external/desugar/java/com/google/devtools/build/android/desugar/scan/
DKeepScanner.java191 private static byte[] readFully(ZipFile zip, ZipEntry entry) { in readFully() method in KeepScanner
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/
DSevenZTestCase.java223 private void readFully(final SevenZFile archive) throws IOException { in readFully() method in SevenZTestCase
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/bsdiff/
DBsPatch.java300 static void readFully( in readFully() method in BsPatch

12