/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
D | ChannelHelper.java | 30 …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/ |
D | IOUtils.java | 141 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/okio/okio/src/commonMain/kotlin/okio/ |
D | BufferedSource.kt | 287 fun readFully(sink: ByteArray) method 299 fun readFully(sink: Buffer, byteCount: Long) method
|
/external/guava/android/guava/src/com/google/common/io/ |
D | ByteArrayDataInput.java | 39 void readFully(byte b[]); in readFully() method 42 void readFully(byte b[], int off, int len); in readFully() method
|
D | LittleEndianDataInputStream.java | 65 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
|
/external/guava/guava/src/com/google/common/io/ |
D | ByteArrayDataInput.java | 39 void readFully(byte b[]); in readFully() method 42 void readFully(byte b[], int off, int len); in readFully() method
|
D | LittleEndianDataInputStream.java | 65 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
|
D | ByteStreams.java | 325 public void readFully(byte b[]) { in readFully() method in ByteStreams.ByteArrayDataInputStream 334 public void readFully(byte b[], int off, int len) { in readFully() method in ByteStreams.ByteArrayDataInputStream 774 public static void readFully(InputStream in, byte[] b) throws IOException { in readFully() method in ByteStreams 791 public static void readFully(InputStream in, byte[] b, int off, int len) throws IOException { in readFully() method in ByteStreams
|
/external/proguard/src/proguard/classfile/io/ |
D | RuntimeDataInput.java | 104 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/jackson-core/src/test/java/com/fasterxml/jackson/core/testsupport/ |
D | MockDataInput.java | 22 public void readFully(byte[] b) throws IOException { in readFully() method in MockDataInput 27 public void readFully(byte[] b, int off, int len) throws IOException { in readFully() method in MockDataInput
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/ |
D | Streams.java | 70 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_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/util/io/ |
D | Streams.java | 72 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/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/io/ |
D | Streams.java | 72 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/okio/okio/src/nonJvmMain/kotlin/okio/ |
D | BufferedSource.kt | 59 actual fun readFully(sink: ByteArray) method 63 actual fun readFully(sink: Buffer, byteCount: Long) method
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/ |
D | ExtractorInput.java | 101 boolean readFully(byte[] target, int offset, int length, boolean allowEndOfInput) in readFully() method 114 void readFully(byte[] target, int offset, int length) throws IOException; in readFully() method
|
D | ForwardingExtractorInput.java | 35 public boolean readFully(byte[] target, int offset, int length, boolean allowEndOfInput) in readFully() method in ForwardingExtractorInput 41 public void readFully(byte[] target, int offset, int length) throws IOException { in readFully() method in ForwardingExtractorInput
|
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/ |
D | ExtractorInput.java | 101 boolean readFully(byte[] target, int offset, int length, boolean allowEndOfInput) in readFully() method 114 void readFully(byte[] target, int offset, int length) throws IOException; in readFully() method
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/ |
D | ExtractorInput.java | 101 boolean readFully(byte[] target, int offset, int length, boolean allowEndOfInput) in readFully() method 114 void readFully(byte[] target, int offset, int length) throws IOException; in readFully() method
|
D | ForwardingExtractorInput.java | 35 public boolean readFully(byte[] target, int offset, int length, boolean allowEndOfInput) in readFully() method in ForwardingExtractorInput 41 public void readFully(byte[] target, int offset, int length) throws IOException { in readFully() method in ForwardingExtractorInput
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/ |
D | InputStreams.java | 37 public static byte[] readFully(final InputStream is) throws IOException { in readFully() method in InputStreams
|
/external/okio/okio/src/jvmMain/kotlin/okio/ |
D | BufferedSource.kt | 92 actual fun readFully(sink: ByteArray) method 98 actual fun readFully(sink: Buffer, byteCount: Long) method
|
/external/okhttp/okio/okio/src/main/java/okio/ |
D | BufferedSource.java | 119 void readFully(byte[] sink) throws IOException; in readFully() method 132 void readFully(Buffer sink, long byteCount) throws IOException; in readFully() method
|
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/ |
D | BufferedSource.java | 121 void readFully(byte[] sink) throws IOException; in readFully() method 134 void readFully(Buffer sink, long byteCount) throws IOException; in readFully() method
|
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/testing/ |
D | Streams.java | 34 public static byte[] readFully(InputStream in) throws IOException { in readFully() method in Streams
|
/external/conscrypt/testing/src/main/java/org/conscrypt/testing/ |
D | Streams.java | 30 public static byte[] readFully(InputStream in) throws IOException { in readFully() method in Streams
|