Lines Matching refs:GDB
6 An ergonomic and easy-to-integrate implementation of the [GDB Remote Serial Protocol](https://sourc…
11 …ke other GDB stub libraries, which simply expose the underlying GDB protocol "warts and all", `gdb…
12 …- For example, instead of having to dig through some [obscure XML files deep the GDB codebase](h…
18 …ub/latest/gdbstub/trait.Connection.html) interface to communicate with the GDB server. As long as …
34 … the PC after a breakpoint is hit), or were related to certain unimplemented GDB protocol features.
36 …ust's type system in enforcing GDB protocol invariants at compile time, it's often been the case t…
42 The GDB Remote Serial Protocol is surprisingly complex, supporting advanced features such as remote…
44 - Base GDB Protocol
50 …ugging features as well. At the moment, `gdbstub` implements the following GDB protocol extensions:
64 - Extend the GDB protocol with custom debug commands using GDB's `monitor` command
66 …GDB features are implemented are decided on an as-needed basis by `gdbstub`'s contributors. If the…
72 For example, if your target doesn't implement a custom GDB `monitor` command handler, the resulting…
139 - A call to `str::from_utf8_unchecked()` when working with incoming GDB packets (the underlying `…
147 …ssed. Due to `gdbstub`'s heavy reliance on the Rust type system to enforce GDB protocol invariants…
149 Notably, the vast majority of GDB protocol features (e.g: remote filesystem support, tracepoint pac…
156 - [ ] Implement GDB's various high-level operating modes: