7 references to ContainsCode
ILCompiler.Compiler (2)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (1)
99SectionCharacteristics.ContainsCode,
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\PEObjectWriter.cs (1)
548if (h.SectionCharacteristics.HasFlag(SectionCharacteristics.ContainsCode))
ILCompiler.ReadyToRun (2)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (1)
99SectionCharacteristics.ContainsCode,
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\PEObjectWriter.cs (1)
548if (h.SectionCharacteristics.HasFlag(SectionCharacteristics.ContainsCode))
System.Reflection.Metadata (3)
System\Reflection\PortableExecutable\ManagedPEBuilder.cs (1)
97builder.Add(new Section(TextSectionName, SectionCharacteristics.MemRead | SectionCharacteristics.MemExecute | SectionCharacteristics.ContainsCode));
System\Reflection\PortableExecutable\PEBuilder.cs (2)
222builder.WriteUInt32((uint)SumRawDataSizes(sections, SectionCharacteristics.ContainsCode)); 234int codeSectionIndex = IndexOfSection(sections, SectionCharacteristics.ContainsCode);