MCPcopy Create free account
hub / github.com/Vector35/debugger / live_view

Method live_view

api/python/debuggercontroller.py:550–558  ·  view source on GitHub ↗

Get the live BinaryView of the debugger

(self)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected