Home
last modified time | relevance | path

Searched refs:AsyncReadStream (Results 1 – 5 of 5) sorted by relevance

/wasmtime-44.0.1/crates/wasi/src/p2/
H A Dpipe.rs150 pub struct AsyncReadStream { struct
157 impl AsyncReadStream { argument
182 AsyncReadStream { in new()
207 impl InputStream for AsyncReadStream { implementation
266 impl Pollable for AsyncReadStream { implementation
380 let mut reader = AsyncReadStream::new(tokio::io::empty()); in empty_read_stream()
405 let mut reader = AsyncReadStream::new(tokio::io::repeat(0)); in infinite_read_stream()
435 let mut reader = AsyncReadStream::new(finite_async_reader(&[1; 123]).await); in finite_read_stream()
472 let mut reader = AsyncReadStream::new(r); in multiple_chunks_read_stream()
537 let mut reader = AsyncReadStream::new(r); in backpressure_read_stream()
/wasmtime-44.0.1/crates/wasi/src/cli/
H A Dlocked_async.rs22 impl SharedHandleReady for p2::pipe::AsyncReadStream { implementation
56 pub struct AsyncStdinStream(Arc<Mutex<p2::pipe::AsyncReadStream>>);
60 Self(Arc::new(Mutex::new(p2::pipe::AsyncReadStream::new(s)))) in new()
111 impl AsyncRead for StdioHandle<p2::pipe::AsyncReadStream> {
/wasmtime-44.0.1/crates/wasi-tls/src/p2/
H A Dhost.rs10 AsyncReadStream, AsyncWriteStream, FutureOutput, WasiFuture, WasiStreamReader,
62 let input = Box::new(AsyncReadStream::new(rx)) as DynInputStream; in finish()
H A Dio.rs202 pub(crate) use wasmtime_wasi::p2::pipe::AsyncReadStream;
/wasmtime-44.0.1/crates/wasi/src/
H A Dcli.rs131 Box::new(p2::pipe::AsyncReadStream::new(Pin::from( in p2_stream()