Home
last modified time | relevance | path

Searched defs:RunCommand (Results 1 – 4 of 4) sorted by relevance

/wasmtime-44.0.1/cranelift/reader/src/
H A Drun_command.rs16 pub enum RunCommand { enum
23 impl RunCommand { implementation
70 impl Display for RunCommand { implementation
H A Dparser.rs183 pub fn parse_run_command(text: &str, signature: &Signature) -> ParseResult<Option<RunCommand>> { in parse_run_command()
2431 fn parse_run_command(&mut self, sig: &Signature) -> ParseResult<RunCommand> { in parse_run_command()
3633 fn parse(text: &str, sig: &Signature) -> ParseResult<RunCommand> { in parse_run_commands()
/wasmtime-44.0.1/src/commands/
H A Drun.rs44 pub struct RunCommand { struct
47 pub run: RunCommon,
51 pub invoke: Option<String>,
55 pub preloads: Preloads,
83 impl RunCommand { implementation
93 pub(crate) fn debugger_run(&mut self) -> Result<Option<RunCommand>> { in debugger_run()
227 impl RunCommand { implementation
H A Dserve.rs204 fn debugger_setup(&mut self) -> Result<Option<RunCommand>> { in debugger_setup()
304 mut debug_run: RunCommand, in serve_under_debugger()