1 write to PointerToRawData
System.Reflection.Metadata (1)
System\Reflection\PortableExecutable\SectionHeader.cs (1)
95PointerToRawData = reader.ReadInt32();
11 references to PointerToRawData
ILCompiler.ReadyToRun (1)
src\runtime\src\coreclr\tools\aot\ILCompiler.Reflection.ReadyToRun\PEReaderExtensions.cs (1)
147return rva - containingSection.VirtualAddress + containingSection.PointerToRawData;
Microsoft.CodeAnalysis (3)
CvtRes.cs (3)
173if ((long)hdr.PointerToRawData + hdr.SizeOfRawData > fileSize) 208stream.Seek(rsrc1.PointerToRawData, SeekOrigin.Begin); 210stream.Seek(rsrc2.PointerToRawData, SeekOrigin.Begin);
Microsoft.DotNet.StrongName (1)
Utils.cs (1)
151int sectionOffset = sectionHeader.PointerToRawData;
Microsoft.NET.HostModel (3)
ResourceUpdater.cs (3)
165GetAligned(lastSection.PointerToRawData + lastSection.SizeOfRawData, fileAlignment); 175rsrcPointerToRawData = resourceSection.PointerToRawData; 211_reader.PEHeaders.SectionHeaders[0].PointerToRawData)
System.Reflection.Metadata (3)
System\Reflection\PortableExecutable\PEHeaders.cs (2)
350offset = _isLoadedImage ? directory.RelativeVirtualAddress : _sectionHeaders[sectionIndex].PointerToRawData + relativeOffset; 401start = SectionHeaders[cormeta].PointerToRawData;
System\Reflection\PortableExecutable\PEReader.cs (1)
418newBlock = peImage.GetMemoryBlock(PEHeaders.SectionHeaders[index].PointerToRawData, size);