(self)
| 1167 | return self.PointerToRawData_adj |
| 1168 | |
| 1169 | def get_VirtualAddress_adj(self): |
| 1170 | if self.VirtualAddress_adj is None: |
| 1171 | if self.VirtualAddress is not None: |
| 1172 | self.VirtualAddress_adj = self.pe.adjust_SectionAlignment( |
| 1173 | self.VirtualAddress, |
| 1174 | self.pe.OPTIONAL_HEADER.SectionAlignment, |
| 1175 | self.pe.OPTIONAL_HEADER.FileAlignment, |
| 1176 | ) |
| 1177 | return self.VirtualAddress_adj |
| 1178 | |
| 1179 | def get_data(self, start=None, length=None, ignore_padding=False): |
| 1180 | """Get data chunk from a section. |
no test coverage detected