Write `buffer` at address `address`.
(self, address: int, buffer: ByteString, length: int = 0x10)
| 10146 | return |
| 10147 | |
| 10148 | def write(self, address: int, buffer: ByteString, length: int = 0x10) -> None: |
| 10149 | """Write `buffer` at address `address`.""" |
| 10150 | gdb.selected_inferior().write_memory(address, buffer, length) |
| 10151 | |
| 10152 | def read(self, addr: int, length: int = 0x10) -> bytes: |
| 10153 | """Return a `length` long byte array with the copy of the process memory at `addr`.""" |
no outgoing calls
no test coverage detected