10 references to CodeView
ILCompiler.Compiler (1)
src\runtime\src\coreclr\tools\Common\Compiler\CompilerTypeSystemContext.cs (1)
339
if (debugEntry.Type != DebugDirectoryEntryType.
CodeView
)
ILCompiler.ReadyToRun (3)
Compiler\DependencyAnalysis\ReadyToRun\DebugDirectoryEntryNode.cs (1)
237
builder.EmitInt((int)DebugDirectoryEntryType.
CodeView
);
Compiler\DependencyAnalysis\ReadyToRun\DebugDirectoryNode.cs (1)
116
DebugDirectoryEntry pdbEntry = entries.Where(s => s.Type == DebugDirectoryEntryType.
CodeView
).FirstOrDefault();
src\runtime\src\coreclr\tools\Common\Compiler\CompilerTypeSystemContext.cs (1)
339
if (debugEntry.Type != DebugDirectoryEntryType.
CodeView
)
Microsoft.CodeAnalysis.Features (1)
Emit\CompilationOutputFilesWithImplicitPdbPath.cs (1)
63
var codeViewEntry = debugDirectory.FirstOrDefault(e => e.Type == DebugDirectoryEntryType.
CodeView
);
Microsoft.CodeAnalysis.Rebuild (1)
CompilationFactory.cs (1)
134
var codeViewEntry = OptionsReader.PeReader.ReadDebugDirectory().Single(entry => entry.Type == DebugDirectoryEntryType.
CodeView
);
System.Reflection.Metadata (4)
System\Reflection\PortableExecutable\DebugDirectory\DebugDirectoryBuilder.cs (1)
130
type: DebugDirectoryEntryType.
CodeView
,
System\Reflection\PortableExecutable\DebugDirectory\DebugDirectoryEntry.cs (1)
63
/// True if the entry is a <see cref="DebugDirectoryEntryType.
CodeView
"/> entry pointing to a Portable PDB.
System\Reflection\PortableExecutable\PEReader.cs (2)
606
if (entry.Type != DebugDirectoryEntryType.
CodeView
)
608
Throw.InvalidArgument(SR.Format(SR.UnexpectedDebugDirectoryType, nameof(DebugDirectoryEntryType.
CodeView
)), nameof(entry));