Home
last modified time | relevance | path

Searched refs:DebugEvent (Results 1 – 8 of 8) sorted by relevance

/wasmtime-44.0.1/crates/debugger/src/
H A Dlib.rs26 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 Ddebug.rs578 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 Dmissing_async.rs146 async fn handle(&self, _: StoreContextMut<'_, ()>, _: DebugEvent<'_>) {} in require_async_with_debug_handler()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dtraphandlers.rs849 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 Dlibcalls.rs1302 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 Dvm.rs235 fn block_on_debug_handler(&mut self, event: crate::DebugEvent) -> crate::Result<()>; in block_on_debug_handler()
H A Ddebug.rs868 pub enum DebugEvent<'a> { enum
939 event: DebugEvent<'_>, in handle()
H A Dstore.rs284 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()