Home
last modified time | relevance | path

Searched refs:RuntimeFiberStack (Results 1 – 6 of 6) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dstack.rs4 use wasmtime_fiber::{RuntimeFiberStack, RuntimeFiberStackCreator};
36 fn new_stack(&self, size: usize, zeroed: bool) -> Result<Box<dyn RuntimeFiberStack>, Error> { in new_stack() argument
38 Ok(Box::new(FiberStackProxy(stack)) as Box<dyn RuntimeFiberStack>) in new_stack()
70 unsafe impl RuntimeFiberStack for FiberStackProxy {
/wasmtime-44.0.1/crates/fiber/src/
H A Dunix.rs33 use crate::{RunResult, RuntimeFiberStack};
61 Custom(Box<dyn RuntimeFiberStack>),
122 pub fn from_custom(custom: Box<dyn RuntimeFiberStack>) -> Result<Self> { in from_custom()
443 pub fn new_fiber_stack(size: usize) -> Result<Box<dyn RuntimeFiberStack>> { in new_fiber_stack() argument
472 unsafe impl RuntimeFiberStack for AsanFiberStack {
528 pub fn new_fiber_stack(_size: usize) -> Result<Box<dyn RuntimeFiberStack>> { in new_fiber_stack() argument
H A Dnostd.rs29 use crate::{Result, RunResult, RuntimeFiberStack};
93 pub fn from_custom(_custom: Box<dyn RuntimeFiberStack>) -> Result<Self> { in from_custom()
H A Dwindows.rs1 use crate::{RunResult, RuntimeFiberStack};
37 pub fn from_custom(_custom: Box<dyn RuntimeFiberStack>) -> io::Result<Self> { in from_custom()
H A Dlib.rs61 pub fn from_custom(custom: Box<dyn RuntimeFiberStack>) -> Result<Self> { in from_custom()
117 fn new_stack(&self, size: usize, zeroed: bool) -> Result<Box<dyn RuntimeFiberStack>, Error>; in new_stack() argument
121 pub unsafe trait RuntimeFiberStack: Send + Sync { trait
H A Dmiri.rs18 use crate::{Result, RunResult, RuntimeFiberStack};
44 pub fn from_custom(_custom: Box<dyn RuntimeFiberStack>) -> Result<Self> { in from_custom()