Lines Matching refs:PointerToRawData
835 return offset - self.PointerToRawData + self.VirtualAddress
839 return (rva - self.VirtualAddress) + self.PointerToRawData
845 if not self.PointerToRawData:
849 return self.PointerToRawData <= offset < self.VirtualAddress + self.SizeOfRawData
1199 'L,VirtualAddress', 'L,SizeOfRawData', 'L,PointerToRawData',
1258 'L,PointerToRawData'))
1553 s.PointerToRawData for s in self.sections if s.PointerToRawData>0]
1723 if section.PointerToRawData > len(self.__data__):
1726 'PointerToRawData points beyond the end of the file.')
1739 # Some packer used a non-aligned PointerToRawData in the sections,
1744 # PointerToRawData. The following code will do the same.
1748 section_data_start = section.PointerToRawData
1751 (section.PointerToRawData % self.OPTIONAL_HEADER.FileAlignment) != 0):
1755 'Normally the PointerToRawData entry of the sections\' structures ' +
2952 if section.PointerToRawData > len(self.__data__):
3598 section_data_start = section.PointerToRawData