Get the live BinaryView of the debugger
(self)
| 548 | |
| 549 | @property |
| 550 | def live_view(self) -> binaryninja.BinaryView: |
| 551 | """Get the live BinaryView of the debugger""" |
| 552 | result = dbgcore.BNDebuggerGetLiveView(self.handle) |
| 553 | if result is None: |
| 554 | return None |
| 555 | result = ctypes.cast(result, ctypes.POINTER(binaryninja.core.BNBinaryView)) |
| 556 | if result is None: |
| 557 | return None |
| 558 | return binaryninja.BinaryView(handle=result) |
| 559 | |
| 560 | @property |
| 561 | def remote_arch(self) -> binaryninja.Architecture: |
nothing calls this directly
no outgoing calls
no test coverage detected