Get the (rebased) BinaryView of the debugger
(self)
| 537 | |
| 538 | @property |
| 539 | def data(self) -> binaryninja.BinaryView: |
| 540 | """Get the (rebased) BinaryView of the debugger""" |
| 541 | result = dbgcore.BNDebuggerGetData(self.handle) |
| 542 | if result is None: |
| 543 | return None |
| 544 | result = ctypes.cast(result, ctypes.POINTER(binaryninja.core.BNBinaryView)) |
| 545 | if result is None: |
| 546 | return None |
| 547 | return binaryninja.BinaryView(handle=result) |
| 548 | |
| 549 | @property |
| 550 | def live_view(self) -> binaryninja.BinaryView: |
no outgoing calls
no test coverage detected