Home
last modified time | relevance | path

Searched defs:read (Results 126 – 150 of 6627) sorted by relevance

12345678910>>...266

/aosp_15_r20/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttp1xStream.java388 @Override public long read(Buffer sink, long byteCount) throws IOException { in read() method in Http1xStream.FixedLengthSource
393 long read = source.read(sink, Math.min(bytesRemaining, byteCount)); in read() local
429 @Override public long read(Buffer sink, long byteCount) throws IOException { in read() method in Http1xStream.ChunkedSource
439 long read = source.read(sink, Math.min(byteCount, bytesRemainingInChunk)); in read() local
483 @Override public long read(Buffer sink, long byteCount) in read() method in Http1xStream.UnknownLengthSource
489 long read = source.read(sink, byteCount); in read() local
/aosp_15_r20/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/
H A DHttp1xStream.java390 @Override public long read(Buffer sink, long byteCount) throws IOException { in read() method in Http1xStream.FixedLengthSource
395 long read = source.read(sink, Math.min(bytesRemaining, byteCount)); in read() local
431 @Override public long read(Buffer sink, long byteCount) throws IOException { in read() method in Http1xStream.ChunkedSource
441 long read = source.read(sink, Math.min(byteCount, bytesRemainingInChunk)); in read() local
485 @Override public long read(Buffer sink, long byteCount) in read() method in Http1xStream.UnknownLengthSource
491 long read = source.read(sink, byteCount); in read() local
/aosp_15_r20/external/rust/android-crates-io/crates/combine/tests/
Dasync.rs643 let mut read = PartialRead::new(&buf[..], ops); in decode_std() localVariable
678 let mut read = PartialAsyncRead::new(&buf[..], ops); in decode_tokio_02() localVariable
714 let mut read = PartialAsyncRead::new(&buf[..], ops); in decode_tokio_03() localVariable
750 let mut read = PartialAsyncRead::new(&buf[..], ops); in decode_tokio() localVariable
783 let mut read = FuturesPartialAsyncRead::new(&buf[..], ops); in decode_async_std() localVariable
815 let mut read = BufReader::new(File::open("README.md").await.unwrap()); in decode_loop() localVariable
/aosp_15_r20/hardware/interfaces/graphics/mapper/stable-c/implutils/include/android/hardware/graphics/mapper/utils/
H A DIMapperMetadataTypes.h171 MetadataReader& read(T& dest) { in read() function
178 MetadataReader& read(float& dest) { in read() function
185 MetadataReader& read(std::string& dest) { in read() function
190 MetadataReader& read(ExtendableType& dest) { in read() function
196 MetadataReader& read(XyColor& dest) { in read() function
/aosp_15_r20/external/aws-sdk-java-v2/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/io/
H A DChecksumValidatingInputStream.java60 public int read() throws IOException { in read() method in ChecksumValidatingInputStream
61 int read = -1; in read() local
87 public int read(byte[] buf, int off, int len) throws IOException { in read() method in ChecksumValidatingInputStream
89 int read = -1; in read() local
H A DSdkLengthAwareInputStream.java44 public int read() throws IOException { in read() method in SdkLengthAwareInputStream
50 int read = super.read(); in read() local
58 public int read(byte[] b, int off, int len) throws IOException { in read() method in SdkLengthAwareInputStream
65 int read = super.read(b, off, len); in read() local
/aosp_15_r20/external/guava/guava/src/com/google/common/io/
H A DByteStreams.java263 int read = in.read(bytes, off, remaining); in toByteArray() local
294 long read; in exhaust() local
728 public int read() throws IOException { in read() method in ByteStreams.LimitedInputStream
741 public int read(byte[] b, int off, int len) throws IOException { in read() method in ByteStreams.LimitedInputStream
802 int read = read(in, b, off, len); in readFully() local
891 int read; in readBytes() local
925 public static int read(InputStream in, byte[] b, int off, int len) throws IOException { in read() method in ByteStreams
/aosp_15_r20/external/guava/android/guava/src/com/google/common/io/
H A DByteStreams.java263 int read = in.read(bytes, off, remaining); in toByteArray() local
294 long read; in exhaust() local
728 public int read() throws IOException { in read() method in ByteStreams.LimitedInputStream
741 public int read(byte[] b, int off, int len) throws IOException { in read() method in ByteStreams.LimitedInputStream
802 int read = read(in, b, off, len); in readFully() local
891 int read; in readBytes() local
925 public static int read(InputStream in, byte[] b, int off, int len) throws IOException { in read() method in ByteStreams
/aosp_15_r20/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
H A DRegularFile.java409 int read = 0; in transferFrom() local
458 public int read(long pos) { in read() method in RegularFile
473 public int read(long pos, byte[] b, int off, int len) { in read() method in RegularFile
484 int read = get(block, offsetInBlock, b, off, length(offsetInBlock, remaining)); in read() local
506 public int read(long pos, ByteBuffer buf) { in read() method in RegularFile
534 public long read(long pos, Iterable<ByteBuffer> bufs) { in read() method in RegularFile
541 int read = read(pos, buf); in read() local
H A DJimfsInputStream.java53 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
/aosp_15_r20/external/okio/okio/src/commonMain/kotlin/okio/internal/
H A DRealBufferedSource.kt42 val read = source.read(buffer, Segment.SIZE.toLong()) in commonRead() constant
123 val read = buffer.read(sink, offset, buffer.size.toInt()) in commonReadFully() constant
137 val read = source.read(buffer, Segment.SIZE.toLong()) in commonRead() constant
/aosp_15_r20/external/apache-commons-io/src/main/java/org/apache/commons/io/input/
H A DUncheckedFilterReader.java127 public int read() throws UncheckedIOException { in read() method in UncheckedFilterReader
135 public int read(final char[] cbuf) throws UncheckedIOException { in read() method in UncheckedFilterReader
143 public int read(final char[] cbuf, final int off, final int len) throws UncheckedIOException { in read() method in UncheckedFilterReader
151 public int read(final CharBuffer target) throws UncheckedIOException { in read() method in UncheckedFilterReader
H A DUncheckedBufferedReader.java133 public int read() throws UncheckedIOException { in read() method in UncheckedBufferedReader
141 public int read(final char[] cbuf) throws UncheckedIOException { in read() method in UncheckedBufferedReader
149 public int read(final char[] cbuf, final int off, final int len) throws UncheckedIOException { in read() method in UncheckedBufferedReader
157 public int read(final CharBuffer target) throws UncheckedIOException { in read() method in UncheckedBufferedReader
H A DTeeReader.java99 public int read() throws IOException { in read() method in TeeReader
115 public int read(final char[] chr) throws IOException { in read() method in TeeReader
133 public int read(final char[] chr, final int st, final int end) throws IOException { in read() method in TeeReader
149 public int read(final CharBuffer target) throws IOException { in read() method in TeeReader
H A DProxyReader.java150 public int read() throws IOException { in read() method in ProxyReader
169 public int read(final char[] chr) throws IOException { in read() method in ProxyReader
190 public int read(final char[] chr, final int st, final int len) throws IOException { in read() method in ProxyReader
210 public int read(final CharBuffer target) throws IOException { in read() method in ProxyReader
/aosp_15_r20/external/stg/
H A Dinput.cc45 const Time read(runtime, "read ABI"); in ReadInternal() local
49 const Time read(runtime, "read BTF"); in ReadInternal() local
53 const Time read(runtime, "read ELF"); in ReadInternal() local
58 const Time read(runtime, "read STG"); in ReadInternal() local
/aosp_15_r20/external/pytorch/torch/csrc/api/src/serialize/
H A Dinput-archive.cpp22 void InputArchive::read(const std::string& key, c10::IValue& ivalue) { in read() function in torch::serialize::InputArchive
60 void InputArchive::read( in read() function in torch::serialize::InputArchive
85 void InputArchive::read(const std::string& key, InputArchive& archive) { in read() function in torch::serialize::InputArchive
117 size_t read(uint64_t pos, void* buf, size_t n, const char* what = "") in load_from() function in torch::serialize::InputArchive::load_from::OurAdapter
150 size_t read(uint64_t pos, void* buf, size_t n, const char* what = "") in load_from() function in torch::serialize::InputArchive::load_from::OurAdapter
/aosp_15_r20/external/aws-sdk-java-v2/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/internal/signer/io/
H A DSdkLengthAwareInputStream.java44 public int read() throws IOException { in read() method in SdkLengthAwareInputStream
50 int read = super.read(); in read() local
58 public int read(byte[] b, int off, int len) throws IOException { in read() method in SdkLengthAwareInputStream
65 int read = super.read(b, off, len); in read() local
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/tests/
Dio_read_line.rs40 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
/aosp_15_r20/external/android_onboarding/java/com/android/onboarding/contracts/
H A DIntentSerializer.kt39 fun read(intent: Intent): V in write() method
59 fun NodeAwareIntentScope.read(): V in NodeAwareIntentScope() method
64 override fun read(intent: Intent): V = NodeAwareIntentScope(nodeId, intent).use { it.read() } in <lambda>() method
/aosp_15_r20/external/aws-sdk-java-v2/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/checksums/
H A DS3ChecksumValidatingInputStream.java60 public int read() throws IOException { in read() method in S3ChecksumValidatingInputStream
61 int read = inputStream.read(); in read() local
100 public int read(byte[] buf, int off, int len) throws IOException { in read() method in S3ChecksumValidatingInputStream
106 int read = -1; in read() local
/aosp_15_r20/external/tensorflow/tensorflow/core/lib/io/
H A Dbuffered_inputstream_test.cc272 tstring read; in TEST() local
305 tstring read; in TEST() local
336 tstring read; in TEST() local
372 tstring read; in TEST() local
408 tstring read; in TEST() local
446 tstring read; in TEST() local
478 tstring read; in TEST() local
/aosp_15_r20/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/gcs/
H A Dgcs_filesystem_test.cc149 auto read = tf_random_access_file::Read(reader.get(), 0, file_size, in ReadAll() local
206 size_t read) { in CompareSubString()
268 int64_t read = tf_random_access_file::Read(file, 0, 1, result, status_); in TEST_F() local
551 int64_t read = tf_random_access_file::Read(file, 0, 6, &result[0], status_); in TEST_F() local
579 int64_t read = tf_random_access_file::Read(file, 0, 6, &result[0], status_); in TEST_F() local
607 int64_t read = tf_random_access_file::Read(file, 0, result.length(), in TEST_F() local
637 int64_t read = tf_random_access_file::Read(file, 0, result.length(), in TEST_F() local
/aosp_15_r20/external/kotlinx.serialization/formats/cbor/commonMain/src/kotlinx/serialization/cbor/internal/
H A DStreams.kt13 fun read(): Int { in read() method in kotlinx.serialization.cbor.internal.ByteArrayInput
17 fun read(b: ByteArray, offset: Int, length: Int): Int { in read() method
/aosp_15_r20/libcore/ojluni/src/main/java/sun/nio/ch/
H A DChannelInputStream.java48 public static int read(ReadableByteChannel ch, ByteBuffer bb, in read() method in ChannelInputStream
79 public synchronized int read() throws IOException { in read() method in ChannelInputStream
88 public synchronized int read(byte[] bs, int off, int len) in read() method in ChannelInputStream
105 protected int read(ByteBuffer bb) in read() method in ChannelInputStream

12345678910>>...266