Base:
method
CreateSection
ILCompiler.ObjectWriter.ObjectWriter.CreateSection(ILCompiler.DependencyAnalysis.ObjectNodeSection, Internal.Text.Utf8String, Internal.Text.Utf8String, System.Int32, System.IO.Stream)
2 overrides of CreateSection
ILCompiler.ReadyToRun (2)
parent\parent\Common\Compiler\ObjectWriter\ElfObjectWriter.cs (1)
76
private protected override void
CreateSection
(ObjectNodeSection section, Utf8String comdatName, Utf8String symbolName, int sectionIndex, Stream sectionStream)
parent\parent\Common\Compiler\ObjectWriter\MachObjectWriter.cs (1)
327
private protected override void
CreateSection
(ObjectNodeSection section, Utf8String comdatName, Utf8String symbolName, int sectionIndex, Stream sectionStream)
2 references to CreateSection
ILCompiler.ReadyToRun (2)
parent\parent\Common\Compiler\ObjectWriter\ElfObjectWriter.cs (1)
182
base.
CreateSection
(section, comdatName, symbolName.IsNull ? sectionNameUtf8 : symbolName, sectionIndex, sectionStream);
parent\parent\Common\Compiler\ObjectWriter\MachObjectWriter.cs (1)
385
base.
CreateSection
(section, comdatName, symbolName.IsNull ? new Utf8StringBuilder().Append("lsection"u8).Append(sectionIndex).ToUtf8String() : symbolName, sectionIndex, sectionStream);