Home
last modified time | relevance | path

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

12345678910>>...44

/aosp_15_r20/libcore/luni/src/main/java/libcore/io/
H A DStreams.java97 public static void readFully(@NonNull InputStream in, @NonNull byte[] dst) throws IOException { in readFully() method in Streams
109 …public static void readFully(InputStream in, byte[] dst, int offset, int byteCount) throws IOExcep… in readFully() method in Streams
142 public static @NonNull byte[] readFully(@NonNull InputStream in) throws IOException { in readFully() method in Streams
181 public static @NonNull String readFully(@NonNull Reader reader) throws IOException { in readFully() method in Streams
/aosp_15_r20/external/okio/okio/src/commonMain/kotlin/okio/
H A DBufferedSource.kt287 fun readFully(sink: ByteArray) method
299 fun readFully(sink: Buffer, byteCount: Long) method
/aosp_15_r20/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A 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
/aosp_15_r20/external/apache-commons-compress/src/main/java/org/apache/commons/compress/utils/
H A 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
/aosp_15_r20/external/guava/guava/src/com/google/common/io/
H A DByteStreams.java341 public void readFully(byte b[]) { in readFully() method in ByteStreams.ByteArrayDataInputStream
350 public void readFully(byte b[], int off, int len) { in readFully() method in ByteStreams.ByteArrayDataInputStream
785 public static void readFully(InputStream in, byte[] b) throws IOException { in readFully() method in ByteStreams
801 public static void readFully(InputStream in, byte[] b, int off, int len) throws IOException { in readFully() method in ByteStreams
H A DByteArrayDataInput.java41 void readFully(byte b[]); in readFully() method
44 void readFully(byte b[], int off, int len); in readFully() method
H A 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
/aosp_15_r20/external/guava/android/guava/src/com/google/common/io/
H A DByteStreams.java341 public void readFully(byte b[]) { in readFully() method in ByteStreams.ByteArrayDataInputStream
350 public void readFully(byte b[], int off, int len) { in readFully() method in ByteStreams.ByteArrayDataInputStream
785 public static void readFully(InputStream in, byte[] b) throws IOException { in readFully() method in ByteStreams
801 public static void readFully(InputStream in, byte[] b, int off, int len) throws IOException { in readFully() method in ByteStreams
H A DByteArrayDataInput.java41 void readFully(byte b[]); in readFully() method
44 void readFully(byte b[], int off, int len); in readFully() method
H A 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
/aosp_15_r20/libcore/ojluni/annotations/hiddenapi/java/io/
H A DObjectInputStream.java155 public void readFully(byte[] buf) throws java.io.IOException { in readFully() method in ObjectInputStream
159 public void readFully(byte[] buf, int off, int len) throws java.io.IOException { in readFully() method in ObjectInputStream
404 public void readFully(byte[] b) throws java.io.IOException { in readFully() method in ObjectInputStream.BlockDataInputStream
408 public void readFully(byte[] b, int off, int len) throws java.io.IOException { in readFully() method in ObjectInputStream.BlockDataInputStream
412 public void readFully(byte[] b, int off, int len, boolean copy) throws java.io.IOException { in readFully() method in ObjectInputStream.BlockDataInputStream
810 void readFully(byte[] b, int off, int len) throws java.io.IOException { in readFully() method in ObjectInputStream.PeekInputStream
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/io/
DDataInput.java200 void readFully(byte b[]) throws IOException; in readFully() method
250 void readFully(byte b[], int off, int len) throws IOException; in readFully() method
/aosp_15_r20/libcore/ojluni/src/main/java/java/io/
H A DDataInput.java200 void readFully(byte b[]) throws IOException; in readFully() method
250 void readFully(byte b[], int off, int len) throws IOException; in readFully() method
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/0/libcore/ojluni/src/main/java/java/io/
DDataInput.java200 void readFully(byte b[]) throws IOException; in readFully() method
250 void readFully(byte b[], int off, int len) throws IOException; in readFully() method
/aosp_15_r20/packages/modules/adb/fastdeploy/deployagent/src/com/android/fastdeploy/
DPatchUtils.java49 static void readFully(final InputStream in, final byte[] destination, final int startAt, in readFully() method in PatchUtils
61 static void readFully(final InputStream in, final byte[] destination) throws IOException { in readFully() method in PatchUtils
/aosp_15_r20/external/apache-commons-io/src/main/java/org/apache/commons/io/input/
H A DSwappedDataInputStream.java114 public void readFully(final byte[] data) throws IOException, EOFException { in readFully() method in SwappedDataInputStream
128 …public void readFully(final byte[] data, final int offset, final int length) throws IOException, E… in readFully() method in SwappedDataInputStream
/aosp_15_r20/external/jackson-core/src/test/java/com/fasterxml/jackson/core/testsupport/
H A DMockDataInput.java22 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
/aosp_15_r20/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/util/io/
H A 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
/aosp_15_r20/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A 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
/aosp_15_r20/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/io/
H A 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
/aosp_15_r20/external/okio/okio/src/nonJvmMain/kotlin/okio/
H A DBufferedSource.kt59 actual fun readFully(sink: ByteArray) method
63 actual fun readFully(sink: Buffer, byteCount: Long) method
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/
H A DExtractorInput.java101 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
H A DForwardingExtractorInput.java35 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
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/
H A DExtractorInput.java101 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
H A DForwardingExtractorInput.java35 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

12345678910>>...44