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

Method perform_get_start

python/binaryview.py:4131–4144  ·  view source on GitHub ↗

``perform_get_start`` implements a query for the first readable, writable, or executable virtual address in the BinaryView. .. note:: This method **may** be overridden by custom BinaryViews. Use :py:func:`add_auto_segment` to provide \ data without overriding this method. .. warning:: T

(self)

Source from the content-addressed store, hash-verified

4129 return addr
4130
4131 def perform_get_start(self) -> int:
4132 """
4133 ``perform_get_start`` implements a query for the first readable, writable, or executable virtual address in
4134 the BinaryView.
4135
4136 .. note:: This method **may** be overridden by custom BinaryViews. Use :py:func:`add_auto_segment` to provide \
4137 data without overriding this method.
4138
4139 .. warning:: This method **must not** be called directly.
4140
4141 :return: returns the first virtual address in the BinaryView
4142 :rtype: int
4143 """
4144 return 0
4145
4146 def perform_get_entry_point(self) -> int:
4147 """

Callers 2

_get_startMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected