MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / parent_view

Method parent_view

python/binaryview.py:3025–3030  ·  view source on GitHub ↗

View that contains the raw data used by this view (read-only)

(self)

Source from the content-addressed store, hash-verified

3023
3024 @property
3025 def parent_view(self) -> Optional['BinaryView']:
3026 """View that contains the raw data used by this view (read-only)"""
3027 result = core.BNGetParentView(self.handle)
3028 if result is None:
3029 return None
3030 return BinaryView(handle=result)
3031
3032 @property
3033 def modified(self) -> bool:

Callers 3

print_memory_informationFunction · 0.45
initMethod · 0.45
dump_dwarfFunction · 0.45

Calls 1

BinaryViewClass · 0.70

Tested by

no test coverage detected