Home
last modified time | relevance | path

Searched refs:new_stack (Results 1 – 7 of 7) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dstack.rs29 fn new_stack(&self, size: usize, zeroed: bool) -> Result<Box<dyn StackMemory>, Error>; in new_stack() method
36 fn new_stack(&self, size: usize, zeroed: bool) -> Result<Box<dyn RuntimeFiberStack>, Error> { in new_stack() method
37 let stack = self.0.new_stack(size, zeroed)?; in new_stack()
/wasmtime-44.0.1/crates/c-api/src/
H A Dasync.rs405 new_stack: wasmtime_new_stack_memory_callback_t, field
411 new_stack: wasmtime_new_stack_memory_callback_t, field
416 fn new_stack(&self, size: usize, zeroed: bool) -> Result<Box<dyn wasmtime::StackMemory>> { in new_stack() method
425 let cb = self.new_stack; in new_stack()
450 new_stack: creator.new_stack, in wasmtime_config_host_stack_creator_set()
/wasmtime-44.0.1/crates/c-api/include/wasmtime/
H A Dasync.h333 wasmtime_new_stack_memory_callback_t new_stack; member
/wasmtime-44.0.1/tests/all/
H A Dstack_creator.rs101 fn new_stack(&self, size: usize, zeroed: bool) -> Result<Box<dyn StackMemory>> { in new_stack() method
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/
H A Don_demand.rs189 let stack = stack_creator.new_stack(self.stack_size, self.stack_zeroing)?; in allocate_fiber_stack()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/sys/unix/
H A Dsignals.rs544 let new_stack = libc::stack_t { in lazy_per_thread_init() localVariable
549 let r = unsafe { libc::sigaltstack(&new_stack, ptr::null_mut()) }; in lazy_per_thread_init()
/wasmtime-44.0.1/crates/fiber/src/
H A Dlib.rs117 fn new_stack(&self, size: usize, zeroed: bool) -> Result<Box<dyn RuntimeFiberStack>, Error>; in new_stack() method