Home
last modified time | relevance | path

Searched defs:read (Results 1 – 25 of 802) sorted by relevance

12345678910>>...33

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/
DBoundedSeekableByteChannelInputStream.java43 public int read() throws IOException { in read() method in BoundedSeekableByteChannelInputStream
46 int read = read(1); in read() local
56 public int read(final byte[] b, final int off, final int len) throws IOException { in read() method in BoundedSeekableByteChannelInputStream
81 private int read(int len) throws IOException { in read() method in BoundedSeekableByteChannelInputStream
83 int read = channel.read(buffer); in read() local
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/utils/
DCountingInputStream.java38 public int read() throws IOException { in read() method in CountingInputStream
46 public int read(final byte[] b) throws IOException { in read() method in CountingInputStream
50 public int read(final byte[] b, final int off, final int len) throws IOException { in read() method in CountingInputStream
63 protected final void count(final long read) { in count()
DChecksumCalculatingInputStream.java54 public int read() throws IOException { in read() method in ChecksumCalculatingInputStream
69 public int read(final byte[] b) throws IOException { in read() method in ChecksumCalculatingInputStream
80 public int read(final byte[] b, final int off, final int len) throws IOException { in read() method in ChecksumCalculatingInputStream
DChecksumVerifyingInputStream.java51 public int read() throws IOException { in read() method in ChecksumVerifyingInputStream
73 public int read(final byte[] b) throws IOException { in read() method in ChecksumVerifyingInputStream
84 public int read(final byte[] b, final int off, final int len) throws IOException { in read() method in ChecksumVerifyingInputStream
/external/glide/library/src/main/java/com/bumptech/glide/util/
DExceptionCatchingInputStream.java71 public int read(byte[] buffer) throws IOException { in read() method in ExceptionCatchingInputStream
72 int read; in read() local
83 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() method in ExceptionCatchingInputStream
84 int read; in read() local
112 public int read() throws IOException { in read() method in ExceptionCatchingInputStream
/external/apache-http/src/org/apache/http/io/
DSessionInputBuffer.java54 int read(byte[] b, int off, int len) throws IOException; in read() method
56 int read(byte[] b) throws IOException; in read() method
58 int read() throws IOException; in read() method
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/snappy/
DFramedSnappyCompressorInputStream.java140 public int read() throws IOException { in read() method in FramedSnappyCompressorInputStream
159 public int read(final byte[] b, final int off, final int len) throws IOException { in read() method in FramedSnappyCompressorInputStream
160 int read = readOnce(b, off, len); in read() local
199 int read = -1; in readOnce() local
271 final int read = IOUtils.readFully(in, b); in readCrc() local
293 final long read = IOUtils.skip(in, size); in skipBlock() local
302 final int read = IOUtils.readFully(in, b); in readStreamIdentifier() local
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
DLimitedInputStream.java49 public int read() throws IOException { in read() method in LimitedInputStream
57 public int read(byte[] b) throws IOException { in read() method in LimitedInputStream
62 public int read(byte[] b, int off, int len) throws IOException { in read() method in LimitedInputStream
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
DLimitedInputStreamTest.java36 public int read() throws IOException { in read() method in LimitedInputStreamTest.ForeverInputStream
41 public int read(byte[] b) throws IOException { in read() method in LimitedInputStreamTest.ForeverInputStream
46 public int read(byte[] b, int off, int len) throws IOException { in read() method in LimitedInputStreamTest.ForeverInputStream
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/
DArchiveInputStream.java80 public int read() throws IOException { in read() method in ArchiveInputStream
91 protected void count(final int read) { in count()
102 protected void count(final long read) { in count()
/external/conscrypt/common/src/jni/main/include/conscrypt/
Dbio_input_stream.h32 int read(char *buf, int len) { in read() function
41 int read = read_internal(buf, len - 1, jniutil::openSslInputStream_readLineMethod); in gets() local
72 jint read = env->CallIntMethod(getStream(), method, javaBytes.get()); in read_internal() local
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/io/
DTeeInputStream.java30 public int read(byte[] buf) in read() method in TeeInputStream
36 public int read(byte[] buf, int off, int len) in read() method in TeeInputStream
49 public int read() in read() method in TeeInputStream
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
DTeeInputStream.java28 public int read(byte[] buf) in read() method in TeeInputStream
34 public int read(byte[] buf, int off, int len) in read() method in TeeInputStream
47 public int read() in read() method in TeeInputStream
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLBIOInputStream.java82 public int read(byte[] buffer) throws IOException { in read() method in OpenSSLBIOInputStream
92 public int read(byte[] buffer, int offset, int len) throws IOException { in read() method in OpenSSLBIOInputStream
100 int read; in read() local
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLBIOInputStream.java78 public int read(byte[] buffer) throws IOException { in read() method in OpenSSLBIOInputStream
88 public int read(byte[] buffer, int offset, int len) throws IOException { in read() method in OpenSSLBIOInputStream
96 int read; in read() local
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/deflate64/
DDeflate64CompressorInputStream.java58 public int read() throws IOException { in read() method in Deflate64CompressorInputStream
78 public int read(byte[] b, int off, int len) throws IOException { in read() method in Deflate64CompressorInputStream
79 int read = -1; in read() local
/external/smali/util/src/main/java/org/jf/util/
DRandomAccessFileInputStream.java48 @Override public int read() throws IOException { in read() method in RandomAccessFileInputStream
54 @Override public int read(byte[] bytes) throws IOException { in read() method in RandomAccessFileInputStream
61 @Override public int read(byte[] bytes, int offset, int length) throws IOException { in read() method in RandomAccessFileInputStream
/external/xz-java/src/org/tukaani/xz/
DSeekableFileInputStream.java54 public int read() throws IOException { in read() method in SeekableFileInputStream
61 public int read(byte[] buf) throws IOException { in read() method in SeekableFileInputStream
70 public int read(byte[] buf, int off, int len) throws IOException { in read() method in SeekableFileInputStream
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/
DMockEvilInputStream.java32 public int read() throws IOException { in read() method in MockEvilInputStream
37 public int read(byte[] bytes, int offset, int length) throws IOException { in read() method in MockEvilInputStream
/external/apache-http/src/org/apache/http/impl/io/
DContentLengthInputStream.java143 public int read() throws IOException { in read() method in ContentLengthInputStream
167 public int read (byte[] b, int off, int len) throws java.io.IOException { in read() method in ContentLengthInputStream
192 public int read(byte[] b) throws IOException { in read() method in ContentLengthInputStream
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/ar/
DArArchiveInputStream.java104 final int read = IOUtils.readFully(input, realized); in getNextArEntry() local
129 final int read = IOUtils.readFully(input, metaData); in getNextArEntry() local
139 final int read = IOUtils.readFully(input, realized); in getNextArEntry() local
263 public int read(final byte[] b, final int off, final int len) throws IOException { in read() method in ArArchiveInputStream
341 final int read = IOUtils.readFully(input, name); in getBSDLongName() local
372 private void trackReadBytes(final long read) { in trackReadBytes()
387 final int read = IOUtils.readFully(input, namebuffer, 0, bufflen); in readGNUStringTable() local
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/zstandard/
DZstdCompressorInputStream.java57 public int read(final byte[] b) throws IOException { in read() method in ZstdCompressorInputStream
77 public int read() throws IOException { in read() method in ZstdCompressorInputStream
84 public int read(final byte[] buf, final int off, final int len) throws IOException { in read() method in ZstdCompressorInputStream
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/brotli/
DBrotliCompressorInputStream.java56 public int read(final byte[] b) throws IOException { in read() method in BrotliCompressorInputStream
76 public int read() throws IOException { in read() method in BrotliCompressorInputStream
83 public int read(final byte[] buf, final int off, final int len) throws IOException { in read() method in BrotliCompressorInputStream
/external/apache-harmony/support/src/test/java/tests/support/
DSupport_StringReader.java111 public int read() throws IOException { in read() method in Support_StringReader
136 public int read(char buf[], int offset, int count) throws IOException { in read() method in Support_StringReader
148 int read = end - pos; in read() local
/external/brotli/java/org/brotli/wrapper/dec/
DBrotliInputStream.java52 public int read() throws IOException { in read() method in BrotliInputStream
72 public int read(byte[] b) throws IOException { in read() method in BrotliInputStream
77 public int read(byte[] b, int off, int len) throws IOException { in read() method in BrotliInputStream

12345678910>>...33