Searched refs:new_stack (Results 1 – 7 of 7) sorted by relevance
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/ |
| H A D | stack.rs | 29 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 D | async.rs | 405 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 D | async.h | 333 wasmtime_new_stack_memory_callback_t new_stack; member
|
| /wasmtime-44.0.1/tests/all/ |
| H A D | stack_creator.rs | 101 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 D | on_demand.rs | 189 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 D | signals.rs | 544 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 D | lib.rs | 117 fn new_stack(&self, size: usize, zeroed: bool) -> Result<Box<dyn RuntimeFiberStack>, Error>; in new_stack() method
|