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

Method child_for_address

python/lineardisassembly.py:257–261  ·  view source on GitHub ↗
(self, addr)

Source from the content-addressed store, hash-verified

255 return core.BNGetLinearViewObjectOrderingIndexTotal(self.handle)
256
257 def child_for_address(self, addr):
258 result = core.BNGetLinearViewObjectChildForAddress(self.handle, addr)
259 if not result:
260 return None
261 return LinearViewObject(result, self)
262
263 def child_for_identifier(self, ident):
264 ident_obj = ident._to_core_struct()

Callers

nothing calls this directly

Calls 1

LinearViewObjectClass · 0.70

Tested by

no test coverage detected