| /wasmtime-44.0.1/crates/wasi/src/p2/ |
| H A D | poll.rs | 2 use wasmtime_wasi_io::{bindings::wasi::io::poll as async_poll, poll::DynPollable}; 8 fn poll(&mut self, pollables: Vec<Resource<DynPollable>>) -> Result<Vec<u32>> { in poll() 14 fn ready(&mut self, pollable: Resource<DynPollable>) -> Result<bool> { in ready() 17 fn block(&mut self, pollable: Resource<DynPollable>) -> Result<()> { in block() 20 fn drop(&mut self, pollable: Resource<DynPollable>) -> Result<()> { in drop()
|
| H A D | ip_name_lookup.rs | 12 use wasmtime_wasi_io::poll::{DynPollable, Pollable, subscribe}; 69 ) -> Result<Resource<DynPollable>> { in subscribe() argument
|
| H A D | bindings.rs | 180 "wasi:io/poll.pollable": wasmtime_wasi_io::poll::DynPollable,
|
| H A D | mod.rs | 255 pub use wasmtime_wasi_io::poll::{DynFuture, DynPollable, MakeFuture, Pollable, subscribe};
|
| /wasmtime-44.0.1/crates/wasi-io/src/ |
| H A D | poll.rs | 17 pub struct DynPollable { struct 93 ) -> Result<Resource<DynPollable>> in subscribe() 104 let pollable = DynPollable { in subscribe()
|
| H A D | impls.rs | 2 use crate::poll::{DynFuture, DynPollable, MakeFuture, subscribe}; 15 async fn poll(&mut self, pollables: Vec<Resource<DynPollable>>) -> Result<Vec<u32>> { in poll() 71 async fn block(&mut self, pollable: Resource<DynPollable>) -> Result<()> { in block() 77 async fn ready(&mut self, pollable: Resource<DynPollable>) -> Result<bool> { in ready() 86 fn drop(&mut self, pollable: Resource<DynPollable>) -> Result<()> { in drop() 136 fn subscribe(&mut self, stream: Resource<DynOutputStream>) -> Result<Resource<DynPollable>> { in subscribe() argument 289 fn subscribe(&mut self, stream: Resource<DynInputStream>) -> Result<Resource<DynPollable>> { in subscribe() argument
|
| H A D | bindings.rs | 4 "wasi:io/poll.pollable": crate::poll::DynPollable,
|
| /wasmtime-44.0.1/crates/wasi/src/p2/host/ |
| H A D | clocks.rs | 2 use crate::p2::DynPollable; 74 ) -> wasmtime::Result<Resource<DynPollable>> { in subscribe_to_duration() argument 99 fn subscribe_instant(&mut self, when: Instant) -> wasmtime::Result<Resource<DynPollable>> { in subscribe_instant() argument 112 ) -> wasmtime::Result<Resource<DynPollable>> { in subscribe_duration() argument
|
| H A D | udp.rs | 16 use wasmtime_wasi_io::poll::DynPollable; 156 fn subscribe(&mut self, this: Resource<UdpSocket>) -> wasmtime::Result<Resource<DynPollable>> { in subscribe() argument 242 ) -> wasmtime::Result<Resource<DynPollable>> { in subscribe() argument 372 ) -> wasmtime::Result<Resource<DynPollable>> { in subscribe() argument
|
| H A D | tcp.rs | 10 poll::DynPollable, 243 fn subscribe(&mut self, this: Resource<TcpSocket>) -> wasmtime::Result<Resource<DynPollable>> { in subscribe() argument
|
| /wasmtime-44.0.1/crates/wasi-tls/src/p2/ |
| H A D | host.rs | 5 use wasmtime_wasi::p2::{DynInputStream, DynOutputStream, DynPollable, IoError}; 93 ) -> wasmtime::Result<Resource<DynPollable>> { in subscribe() argument
|
| /wasmtime-44.0.1/examples/min-platform/embedding/src/ |
| H A D | wasi.rs | 39 poll::{DynPollable, Pollable, subscribe}, 484 ) -> Result<Resource<DynPollable>> { in subscribe_duration() argument 490 ) -> Result<Resource<DynPollable>> { in subscribe_instant() argument
|
| /wasmtime-44.0.1/crates/wasi-http/src/p2/ |
| H A D | types_impl.rs | 16 use wasmtime_wasi::p2::{DynInputStream, DynOutputStream, DynPollable}; 480 ) -> wasmtime::Result<Resource<DynPollable>> { in subscribe() argument 680 ) -> wasmtime::Result<Resource<DynPollable>> { in subscribe() argument
|
| /wasmtime-44.0.1/crates/debugger/src/host/ |
| H A D | api.rs | 13 use wasmtime_wasi::p2::{DynPollable, Pollable, subscribe}; 298 async fn subscribe(&mut self, self_: Resource<EventFuture>) -> Result<Resource<DynPollable>> { in subscribe() argument
|