Searched refs:Executor (Results 1 – 4 of 4) sorted by relevance
| /wasmtime-44.0.1/examples/min-platform/embedding/src/ |
| H A D | wasi.rs | 267 Executor::current().push_deadline(self.due, cx.waker().clone()); in poll() 347 struct ExecutorGlobal(RefCell<Option<Executor>>); 359 struct Executor(Rc<RefCell<ExecutorInner>>); struct 361 impl Executor { impl 363 Executor(Rc::new(RefCell::new(ExecutorInner { in new() 368 Executor( in current() 424 let executor = Executor::new(); in block_on() 425 *EXECUTOR.0.borrow_mut() = Some(Executor(executor.0.clone())); in block_on()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/ |
| H A D | store.rs | 541 executor: Executor, 592 pub(crate) enum Executor { enum 598 impl Executor { impl 602 Ok(Executor::Interpreter(Interpreter::new(engine)?)) in new() 604 Ok(Executor::Native) in new() 609 Ok(Executor::Interpreter(Interpreter::new(engine)?)) in new() 776 executor: Executor::new(engine)?, in try_new() 2552 Executor::Native => ExecutorRef::Native, in executor() 2557 pub(crate) fn swap_executor(&mut self, executor: &mut Executor) { in swap_executor() argument 2563 Executor::Interpreter(i) => i.unwinder(), in unwinder() [all …]
|
| H A D | fiber.rs | 2 use crate::store::{AsStoreOpaque, Asyncness, Executor, StoreId, StoreOpaque}; 580 executor: Executor, 657 executor: Executor, 786 let executor = Executor::new(&engine)?; in make_fiber_unchecked()
|
| /wasmtime-44.0.1/crates/wasi-http/tests/all/ |
| H A D | http_server.rs | 139 impl<F> hyper::rt::Executor<F> for TokioExecutor
|