Searched refs:DebugEvent (Results 1 – 8 of 8) sorted by relevance
| /wasmtime-44.0.1/crates/debugger/src/ |
| H A D | lib.rs | 26 AsContextMut, DebugEvent, DebugHandler, Engine, ExnRef, OwnedRooted, Result, Store, 176 async fn handle(&self, mut store: StoreContextMut<'_, T>, event: DebugEvent<'_>) { in handle() 180 DebugEvent::HostcallError(_) => DebugRunResult::HostcallError, in handle() 181 DebugEvent::CaughtExceptionThrown(exn) => DebugRunResult::CaughtExceptionThrown(exn), in handle() 182 DebugEvent::UncaughtExceptionThrown(exn) => { in handle() 185 DebugEvent::Trap(trap) => DebugRunResult::Trap(trap), in handle() 186 DebugEvent::Breakpoint => DebugRunResult::Breakpoint, in handle() 187 DebugEvent::EpochYield => { in handle() 272 .handle(store.as_context_mut(), DebugEvent::Breakpoint) in new()
|
| /wasmtime-44.0.1/tests/all/ |
| H A D | debug.rs | 578 event: DebugEvent<'_>, 812 wasmtime::DebugEvent::Breakpoint => { in breakpoint_events() 863 wasmtime::DebugEvent::Breakpoint => { in breakpoint_events() 871 wasmtime::DebugEvent::Breakpoint => { in breakpoint_events() 879 wasmtime::DebugEvent::Breakpoint => { in breakpoint_events() 887 wasmtime::DebugEvent::Breakpoint => { in breakpoint_events() 957 wasmtime::DebugEvent::Breakpoint => {} in breakpoints_in_inlined_code() 960 wasmtime::DebugEvent::Breakpoint => {} in breakpoints_in_inlined_code() 1375 DebugEvent::Breakpoint => { in single_step_before_instantiation() 1483 wasmtime::DebugEvent::Breakpoint => { in breakpoint_slips_to_first_opcode() [all …]
|
| H A D | missing_async.rs | 146 async fn handle(&self, _: StoreContextMut<'_, ()>, _: DebugEvent<'_>) {} in require_async_with_debug_handler()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/ |
| H A D | traphandlers.rs | 849 store.block_on_debug_handler(crate::DebugEvent::CaughtExceptionThrown(exn)) in unwind() 864 store.block_on_debug_handler(crate::DebugEvent::UncaughtExceptionThrown( in unwind() 871 } => store.block_on_debug_handler(crate::DebugEvent::Trap(*trap)), in unwind() 875 } => store.block_on_debug_handler(crate::DebugEvent::HostcallError(err)), in unwind()
|
| H A D | libcalls.rs | 1302 store.block_on_debug_handler(crate::DebugEvent::EpochYield)?; in new_epoch() 1758 store.block_on_debug_handler(crate::DebugEvent::Breakpoint)?; in breakpoint()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/ |
| H A D | vm.rs | 235 fn block_on_debug_handler(&mut self, event: crate::DebugEvent) -> crate::Result<()>; in block_on_debug_handler()
|
| H A D | debug.rs | 868 pub enum DebugEvent<'a> { enum 939 event: DebugEvent<'_>, in handle()
|
| H A D | store.rs | 284 event: crate::DebugEvent<'a>, in handle() 297 event: crate::DebugEvent<'a>, in handle() 2829 fn block_on_debug_handler(&mut self, event: crate::DebugEvent<'_>) -> crate::Result<()> { in block_on_debug_handler()
|