Home
last modified time | relevance | path

Searched defs:Debuggee (Results 1 – 7 of 7) sorted by relevance

/wasmtime-44.0.1/crates/debugger/src/host/
H A Dapi.rs17 pub struct Debuggee { struct
34 impl Debuggee { argument
307 d: Resource<Debuggee>, in get_module()
319 d: Resource<Debuggee>, in get_memory()
334 d: Resource<Debuggee>, in get_global()
349 d: Resource<Debuggee>, in get_table()
364 d: Resource<Debuggee>, in get_func()
379 d: Resource<Debuggee>, in get_tag()
411 d: Resource<Debuggee>, in add_breakpoint()
422 d: Resource<Debuggee>, in remove_breakpoint()
[all …]
H A Dopaque.rs117 impl<T: Send + 'static> OpaqueDebugger for crate::Debuggee<T> { implementation
/wasmtime-44.0.1/crates/debugger/src/
H A Dlib.rs44 pub struct Debuggee<T: Send + 'static> { struct
49 state: DebuggeeState, argument
68 /// cancel-safe version of `Debuggee::run` below. argument
229 impl<T: Send + 'static> Debuggee<T> { implementation
H A Dhost.rs21 ) -> Result<Resource<Debuggee>> { in add_debuggee()
/wasmtime-44.0.1/crates/test-programs/src/bin/
H A Ddebugger_component.rs24 fn debug(d: &Debuggee, args: Vec<String>) { in debug()
60 fn test_simple(d: &Debuggee) { in test_simple()
91 fn test_loop(d: &Debuggee) { in test_loop()
/wasmtime-44.0.1/crates/gdbstub-component/src/
H A Dapi.rs21 pub fn continue_(d: &Debuggee, r: ResumptionValue) -> Self { in continue_()
27 pub fn single_step(d: &Debuggee, r: ResumptionValue) -> Self { in single_step()
H A Dlib.rs44 fn debug(d: &api::Debuggee, args: Vec<String>) { in debug()