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