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

Method next

python/lineardisassembly.py:213–219  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

211
212 @property
213 def next(self):
214 if self._parent is None:
215 return None
216 result = core.BNGetNextLinearViewObjectChild(self._parent.handle, self.handle)
217 if not result:
218 return None
219 return LinearViewObject(result, self._parent)
220
221 @property
222 def start(self):

Callers 15

parse_typesMethod · 0.45
parse_symbolsMethod · 0.45
parse_mod_symbolsMethod · 0.45
get_info_stringFunction · 0.45
process_treeFunction · 0.45
dump_dwarfFunction · 0.45
do_structure_parseFunction · 0.45
recover_names_internalFunction · 0.45
parse_unwind_sectionFunction · 0.45
newMethod · 0.45

Calls 1

LinearViewObjectClass · 0.70

Tested by 1

check_for_leaksFunction · 0.36