Searched refs:DebugRunResult (Results 1 – 3 of 3) sorted by relevance
| /wasmtime-44.0.1/crates/debugger/src/ |
| H A D | lib.rs | 155 Paused(DebugRunResult), 183 DebugRunResult::UncaughtExceptionThrown(exn) in handle() 196 DebugRunResult::EpochYield in handle() 333 pub async fn run(&mut self) -> Result<DebugRunResult> { in run() argument 401 Ok(DebugRunResult::Finished) in run() 421 DebugRunResult::Finished => break, in finish() 509 pub enum DebugRunResult { enum 570 assert!(matches!(event, DebugRunResult::Breakpoint)); in basic_debugger() 604 assert!(matches!(event, DebugRunResult::Breakpoint)); in basic_debugger() 638 assert!(matches!(event, DebugRunResult::Breakpoint)); in basic_debugger() [all …]
|
| /wasmtime-44.0.1/crates/debugger/src/host/ |
| H A D | api.rs | 5 use crate::{DebugRunResult, host::bindings::wasm_type_to_val_type}; 93 Result<DebugRunResult>, 102 result: Option<Result<DebugRunResult>>, 253 fn result_to_event(table: &mut ResourceTable, value: DebugRunResult) -> Result<wit::Event> { in result_to_event() 255 DebugRunResult::Finished => wit::Event::Complete, in result_to_event() 256 DebugRunResult::HostcallError => wit::Event::Trap, in result_to_event() 257 DebugRunResult::Trap(_t) => wit::Event::Trap, in result_to_event() 258 DebugRunResult::Breakpoint => wit::Event::Breakpoint, in result_to_event() 259 DebugRunResult::EpochYield => wit::Event::Interrupted, in result_to_event() 260 DebugRunResult::CaughtExceptionThrown(e) => { in result_to_event() [all …]
|
| H A D | opaque.rs | 34 async fn single_step(&mut self) -> Result<crate::DebugRunResult>; in single_step() argument 35 async fn continue_(&mut self) -> Result<crate::DebugRunResult>; in continue_() argument 126 async fn single_step(&mut self) -> Result<crate::DebugRunResult> { in single_step() argument 133 async fn continue_(&mut self) -> Result<crate::DebugRunResult> { in continue_() argument
|