Checks if the specified range overlaps with a relocation
(self, addr: int, size: int)
| 3697 | return core.BNBinaryViewFinalizeNewSegments(self.handle) |
| 3698 | |
| 3699 | def range_contains_relocation(self, addr: int, size: int) -> bool: |
| 3700 | """Checks if the specified range overlaps with a relocation""" |
| 3701 | return core.BNRangeContainsRelocation(self.handle, addr, size) |
| 3702 | |
| 3703 | @property |
| 3704 | def new_auto_function_analysis_suppressed(self) -> bool: |