Home
last modified time | relevance | path

Searched refs:DebugHandler (Results 1 – 5 of 5) sorted by relevance

/wasmtime-44.0.1/tests/all/
H A Ddebug.rs6 AsContextMut, Caller, Config, DebugEvent, DebugHandler, Engine, Extern, FrameHandle, Func,
571 impl DebugHandler for $ty { impl
1371 impl DebugHandler for CountingHandler { in single_step_before_instantiation()
1424 impl DebugHandler for H { in early_epoch_yield_still_has_vmctx()
1583 impl DebugHandler for D { in component_module_relative_breakpoint_pcs()
H A Dmissing_async.rs143 impl DebugHandler for MyDebugHandler { in require_async_with_debug_handler()
/wasmtime-44.0.1/crates/debugger/src/
H A Dlib.rs26 AsContextMut, DebugEvent, DebugHandler, Engine, ExnRef, OwnedRooted, Result, Store,
174 impl<T: Send + 'static> DebugHandler for Handler<T> {
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dstore.rs102 use crate::{BreakpointState, DebugHandler, FrameDataCache};
291 D: DebugHandler,
1278 pub fn set_debug_handler(&mut self, handler: impl DebugHandler<Data = T>) in set_debug_handler()
H A Ddebug.rs930 pub trait DebugHandler: Clone + Send + Sync + 'static { trait