``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)
| 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 | """ |
no outgoing calls
no test coverage detected