Struct gdb_command::GdbCommand [−][src]
pub struct GdbCommand<'a> { /* fields omitted */ }
Struct contains information about arguments for gdb
to run.
Implementations
impl<'a> GdbCommand<'a>
[src]
impl<'a> GdbCommand<'a>
[src]pub fn new(exec_type: &'a ExecType<'_>) -> GdbCommand<'a>
[src]
pub fn new(exec_type: &'a ExecType<'_>) -> GdbCommand<'a>
[src]pub fn ex(&mut self, cmd: &'a str) -> &'a mut GdbCommand<'_>
[src]
pub fn ex(&mut self, cmd: &'a str) -> &'a mut GdbCommand<'_>
[src]pub fn bt(&mut self) -> &'a mut GdbCommand<'_>
[src]
pub fn bt(&mut self) -> &'a mut GdbCommand<'_>
[src]Add command to get backtrace (-ex bt)
pub fn disassembly(&mut self) -> &'a mut GdbCommand<'_>
[src]
pub fn disassembly(&mut self) -> &'a mut GdbCommand<'_>
[src]Add command to get disassembly (-ex ‘x/16i $pc’)
pub fn regs(&mut self) -> &'a mut GdbCommand<'_>
[src]
pub fn regs(&mut self) -> &'a mut GdbCommand<'_>
[src]Add command to get registers (-ex ‘i r’)
pub fn mappings(&mut self) -> &'a mut GdbCommand<'_>
[src]
pub fn mappings(&mut self) -> &'a mut GdbCommand<'_>
[src]Add command to get mappings (-ex ‘info proc mappings’)