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

Method get_recent_function_at

python/binaryview.py:5191–5195  ·  view source on GitHub ↗
(self, addr: int)

Source from the content-addressed store, hash-verified

5189 core.BNFreeFunctionList(funcs, count.value)
5190
5191 def get_recent_function_at(self, addr: int) -> Optional['_function.Function']:
5192 func = core.BNGetRecentAnalysisFunctionForAddress(self.handle, addr)
5193 if func is None:
5194 return None
5195 return _function.Function(self, func)
5196
5197 def get_basic_blocks_at(self, addr: int) -> List['basicblock.BasicBlock']:
5198 """

Callers 2

navigateMethod · 0.80
navigateMethod · 0.80

Calls 1

FunctionMethod · 0.80

Tested by

no test coverage detected