Home
last modified time | relevance | path

Searched defs:AsyncRead (Results 1 – 16 of 16) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/combine/src/stream/
Ddecoder.rs158 pub async fn __before_parse_tokio_02<R>(&mut self, mut reader: Pin<&mut R>) -> io::Result<()> in __before_parse_tokio_02()
161 C: crate::stream::buf_reader::CombineRead<R, dyn tokio_02_dep::io::AsyncRead>, in __before_parse_tokio_02()
177 pub async fn __before_parse_tokio_03<R>(&mut self, mut reader: Pin<&mut R>) -> io::Result<()> in __before_parse_tokio_03()
180 C: crate::stream::buf_reader::CombineRead<R, dyn tokio_03_dep::io::AsyncRead>, in __before_parse_tokio_03()
196 pub async fn __before_parse_tokio<R>(&mut self, mut reader: Pin<&mut R>) -> io::Result<()> in __before_parse_tokio()
199 C: crate::stream::buf_reader::CombineRead<R, dyn tokio_dep::io::AsyncRead>, in __before_parse_tokio()
215 pub async fn __before_parse_async<R>(&mut self, reader: Pin<&mut R>) -> io::Result<()> in __before_parse_async()
Dbuf_reader.rs283 read: Pin<&mut impl tokio_03_dep::io::AsyncRead>, in tokio_03_read_buf()
315 read: Pin<&mut impl tokio_dep::io::AsyncRead>, in tokio_read_buf()
501 R: futures_io_03::AsyncRead, in poll_extend_buf()
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/io/
Dasync_read.rs44 pub trait AsyncRead { trait
77 impl<T: ?Sized + AsyncRead + Unpin> AsyncRead for &mut T { impl
95 impl AsyncRead for &[u8] { impl
Djoin.rs13 R: AsyncRead, in join()
/aosp_15_r20/external/rust/android-crates-io/crates/futures-io/src/
Dlib.rs47 pub trait AsyncRead { trait
327 impl<T: ?Sized + AsyncRead + Unpin> AsyncRead for &mut T { impl
373 impl AsyncRead for &[u8] { impl
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/io/util/
Dchain.rs24 T: AsyncRead, in chain()
25 U: AsyncRead, in chain()
/aosp_15_r20/external/rust/android-crates-io/crates/futures-util/src/io/
Dmod.rs175 R: AsyncRead, in chain()
828 pub(crate) fn assert_read<R>(reader: R) -> R in assert_read()
Dcopy.rs36 R: AsyncRead, in copy()
/aosp_15_r20/development/host/windows/usb/api/
H A Dadb_endpoint_object.cpp50 ADBAPIHANDLE AdbEndpointObject::AsyncRead(void* buffer, in AsyncRead() function in AdbEndpointObject
/aosp_15_r20/external/cronet/third_party/boringssl/src/ssl/test/
H A Dasync_bio.cc74 static int AsyncRead(BIO *bio, char *out, int outl) { in AsyncRead() function
/aosp_15_r20/external/boringssl/src/ssl/test/
H A Dasync_bio.cc74 static int AsyncRead(BIO *bio, char *out, int outl) { in AsyncRead() function
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/ssl/test/
Dasync_bio.cc74 static int AsyncRead(BIO *bio, char *out, int outl) { in AsyncRead() function
/aosp_15_r20/external/rust/crates/quiche/deps/boringssl/src/ssl/test/
Dasync_bio.cc74 static int AsyncRead(BIO *bio, char *out, int outl) { in AsyncRead() function
/aosp_15_r20/external/rust/android-crates-io/crates/tokio-util/src/io/
Dinspect.rs28 R: AsyncRead, in new()
/aosp_15_r20/system/nfc/tools/casimir/src/
H A Dmain.rs315 ) -> Result<(Pin<Box<dyn AsyncRead>>, Pin<Box<dyn AsyncWrite>>, String)> { in accept_split()
/aosp_15_r20/external/rust/android-crates-io/crates/tokio-util/src/codec/
Dlength_delimited.rs991 pub fn new_read<T>(&self, upstream: T) -> FramedRead<T, LengthDelimitedCodec> in new_read()