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

Method get_next_basic_block_start_after

python/binaryview.py:7349–7365  ·  view source on GitHub ↗

``get_next_basic_block_start_after`` returns the virtual address of the BasicBlock that occurs after the virtual address ``addr`` :param int addr: the virtual address to start looking from. :return: the virtual address of the next BasicBlock :rtype: int :Example: >>> hex(bv.get_ne

(self, addr: int)

Source from the content-addressed store, hash-verified

7347 return core.BNGetNextFunctionStartAfterAddress(self.handle, addr)
7348
7349 def get_next_basic_block_start_after(self, addr: int) -> int:
7350 """
7351 ``get_next_basic_block_start_after`` returns the virtual address of the BasicBlock that occurs after the virtual
7352 address ``addr``
7353
7354 :param int addr: the virtual address to start looking from.
7355 :return: the virtual address of the next BasicBlock
7356 :rtype: int
7357 :Example:
7358
7359 >>> hex(bv.get_next_basic_block_start_after(bv.entry_point))
7360 '0x100014a8L'
7361 >>> hex(bv.get_next_basic_block_start_after(0x100014a8))
7362 '0x100014adL'
7363 >>>
7364 """
7365 return core.BNGetNextBasicBlockStartAfterAddress(self.handle, addr)
7366
7367 def get_next_data_after(self, addr: int) -> int:
7368 """

Callers 1

make_codeFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected