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

Method get_recent_basic_block_at

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

Source from the content-addressed store, hash-verified

5237 core.BNFreeBasicBlockList(blocks, count.value)
5238
5239 def get_recent_basic_block_at(self, addr: int) -> Optional['basicblock.BasicBlock']:
5240 block = core.BNGetRecentBasicBlockForAddress(self.handle, addr)
5241 if block is None:
5242 return None
5243 return basicblock.BasicBlock(block, self)
5244
5245 def get_code_refs(self, addr: int, length: Optional[int] = None) -> Generator['ReferenceSource', None, None]:
5246 """

Callers 2

navigateMethod · 0.80
navigateMethod · 0.80

Calls 1

BasicBlockMethod · 0.80

Tested by

no test coverage detected