(self, rva)
| 1237 | return offset - self.get_PointerToRawData_adj() + self.get_VirtualAddress_adj() |
| 1238 | |
| 1239 | def get_offset_from_rva(self, rva): |
| 1240 | return rva - self.get_VirtualAddress_adj() + self.get_PointerToRawData_adj() |
| 1241 | |
| 1242 | def contains_offset(self, offset): |
| 1243 | """Check whether the section contains the file offset provided.""" |
nothing calls this directly
no test coverage detected