/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/ |
D | BoundedSeekableByteChannelInputStream.java | 43 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/ |
D | CountingInputStream.java | 38 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()
|
D | ChecksumCalculatingInputStream.java | 54 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
|
/external/glide/library/src/main/java/com/bumptech/glide/util/ |
D | ExceptionCatchingInputStream.java | 71 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-commons-compress/src/main/java/org/apache/commons/compress/compressors/snappy/ |
D | FramedSnappyCompressorInputStream.java | 140 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/rust/crates/tokio/tests/ |
D | io_read_line.rs | 40 let mut read = BufReader::new(mock); in read_line_not_all_ready() localVariable 67 let mut read = BufReader::new(mock); in read_line_invalid_utf8() localVariable 83 let mut read = BufReader::new(mock); in read_line_fail() localVariable 100 let mut read = BufReader::new(mock); in read_line_fail_and_utf8_fail() localVariable
|
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/ |
D | JimfsInputStream.java | 53 public synchronized int read() throws IOException { in read() method in JimfsInputStream 75 public int read(byte[] b) throws IOException { in read() method in JimfsInputStream 80 public int read(byte[] b, int off, int len) throws IOException { in read() method in JimfsInputStream 93 int read = file.read(pos, b, off, len); in readInternal() local
|
/external/apache-http/src/org/apache/http/io/ |
D | SessionInputBuffer.java | 54 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/mesa3d/src/intel/tools/ |
D | aub_read.c | 63 parse_error(struct aub_read *read, const uint32_t *p, const char *fmt, ...) in parse_error() 79 handle_trace_header(struct aub_read *read, const uint32_t *p) in handle_trace_header() 109 handle_memtrace_version(struct aub_read *read, const uint32_t *p) in handle_memtrace_version() 134 handle_trace_block(struct aub_read *read, const uint32_t *p) in handle_trace_block() 178 handle_memtrace_reg_write(struct aub_read *read, const uint32_t *p) in handle_memtrace_reg_write() 262 handle_memtrace_mem_write(struct aub_read *read, const uint32_t *p) in handle_memtrace_mem_write() 290 aub_read_command(struct aub_read *read, const void *data, uint32_t data_len) in aub_read_command()
|
/external/llvm-project/llvm/include/llvm/Bitcode/ |
D | BitcodeConvenience.h | 199 static void read(ArrayRef<T> buffer, ElementDataTy &element, in read() function 208 static void read(ArrayRef<T> buffer, NoneType, DataTy &&...data) { in read() function 235 static void read(ArrayRef<T> buffer, DataTy &data) { in read() function 240 template <typename T> static void read(ArrayRef<T> buffer, NoneType) { in read() function 286 static void read(ArrayRef<T> Buffer, ArrayRef<T> &rawData) { in read() function 291 static void read(ArrayRef<T> buffer, ArrayTy &array) { in read() function 296 template <typename T> static void read(ArrayRef<T> buffer, NoneType) { in read() function 314 template <typename T> static void read(ArrayRef<T> buffer) { (void)buffer; } in read() function
|
/external/okio/okio/src/jvmMain/kotlin/okio/ |
D | RealBufferedSource.kt | 65 override fun read(sink: Buffer, byteCount: Long): Long = commonRead(sink, byteCount) in buffer() method in okio.RealBufferedSource 75 override fun read(sink: ByteArray): Int = read(sink, 0, sink.size) in buffer() method in okio.RealBufferedSource 77 override fun read(sink: ByteArray, offset: Int, byteCount: Int): Int = in buffer() method in okio.RealBufferedSource 80 override fun read(sink: ByteBuffer): Int { in buffer() method in okio.RealBufferedSource 82 val read = source.read(buffer, Segment.SIZE.toLong()) in buffer() constant 144 override fun read(): Int { in readUtf8Line() method 153 override fun read(data: ByteArray, offset: Int, byteCount: Int): Int { in readUtf8Line() method
|
/external/conscrypt/common/src/jni/main/include/conscrypt/ |
D | bio_input_stream.h | 32 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/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/ |
D | ArchiveInputStream.java | 80 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/tensorflow/tensorflow/core/lib/io/ |
D | random_inputstream_test.cc | 33 tstring read; in TEST() local 63 absl::Cord read; in TEST() local 95 tstring read; in TEST() local 126 tstring read; in TEST() local
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/util/io/ |
D | TeeInputStream.java | 35 public int read(byte[] buf) in read() method in TeeInputStream 41 public int read(byte[] buf, int off, int len) in read() method in TeeInputStream 54 public int read() in read() method in TeeInputStream
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/io/ |
D | TeeInputStream.java | 35 public int read(byte[] buf) in read() method in TeeInputStream 41 public int read(byte[] buf, int off, int len) in read() method in TeeInputStream 54 public int read() in read() method in TeeInputStream
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/ |
D | TeeInputStream.java | 33 public int read(byte[] buf) in read() method in TeeInputStream 39 public int read(byte[] buf, int off, int len) in read() method in TeeInputStream 52 public int read() in read() method in TeeInputStream
|
/external/cpu_features/src/ |
D | stack_line_reader.c | 32 const int read = CpuFeatures_ReadFile(reader->fd, reader->buffer, in LoadFullBuffer() local 44 const int read = CpuFeatures_ReadFile(reader->fd, ptr, size_to_read); in LoadMore() local 69 const int read = LoadFullBuffer(reader); in SkipToNextLine() local 114 const int read = BringToFrontAndLoadMore(reader); in StackLineReader_NextLine() local
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | OpenSSLBIOInputStream.java | 78 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/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | OpenSSLBIOInputStream.java | 82 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/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/ar/ |
D | ArArchiveInputStream.java | 104 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/smali/dexlib2/src/main/java/org/jf/util/ |
D | RandomAccessFileInputStream.java | 48 @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/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/deflate64/ |
D | Deflate64CompressorInputStream.java | 58 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/xz-java/src/org/tukaani/xz/ |
D | SeekableFileInputStream.java | 54 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/rust/crates/protobuf/src/ |
D | types.rs | 32 fn read(is: &mut CodedInputStream) -> ProtobufResult<Self::Value>; in read() method 128 fn read(is: &mut CodedInputStream) -> ProtobufResult<f32> { in read() method 161 fn read(is: &mut CodedInputStream) -> ProtobufResult<f64> { in read() method 194 fn read(is: &mut CodedInputStream) -> ProtobufResult<i32> { in read() method 226 fn read(is: &mut CodedInputStream) -> ProtobufResult<i64> { in read() method 254 fn read(is: &mut CodedInputStream) -> ProtobufResult<u32> { in read() method 282 fn read(is: &mut CodedInputStream) -> ProtobufResult<u64> { in read() method 310 fn read(is: &mut CodedInputStream) -> ProtobufResult<i32> { in read() method 338 fn read(is: &mut CodedInputStream) -> ProtobufResult<i64> { in read() method 366 fn read(is: &mut CodedInputStream) -> ProtobufResult<u32> { in read() method [all …]
|