Searched refs:RuntimeFiberStack (Results 1 – 6 of 6) sorted by relevance
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/ |
| H A D | stack.rs | 4 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 D | unix.rs | 33 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 D | nostd.rs | 29 use crate::{Result, RunResult, RuntimeFiberStack}; 93 pub fn from_custom(_custom: Box<dyn RuntimeFiberStack>) -> Result<Self> { in from_custom()
|
| H A D | windows.rs | 1 use crate::{RunResult, RuntimeFiberStack}; 37 pub fn from_custom(_custom: Box<dyn RuntimeFiberStack>) -> io::Result<Self> { in from_custom()
|
| H A D | lib.rs | 61 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 D | miri.rs | 18 use crate::{Result, RunResult, RuntimeFiberStack}; 44 pub fn from_custom(_custom: Box<dyn RuntimeFiberStack>) -> Result<Self> { in from_custom()
|