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

Method data

api/python/debuggercontroller.py:539–547  ·  view source on GitHub ↗

Get the (rebased) BinaryView of the debugger

(self)

Source from the content-addressed store, hash-verified

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:

Callers 2

RunToMethod · 0.45
RunToAndWaitMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected