20 references to DebuggerAssemblyControlFlags
Microsoft.Diagnostics.DataContractReader.Abstractions (2)
Contracts\ILoader.cs (2)
142DebuggerAssemblyControlFlags GetDebuggerInfoBits(ModuleHandle handle) => throw new NotImplementedException(); 143void SetDebuggerInfoBits(ModuleHandle handle, DebuggerAssemblyControlFlags newBits) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\Loader_1.cs (4)
405DebuggerAssemblyControlFlags ILoader.GetDebuggerInfoBits(ModuleHandle handle) 408return (DebuggerAssemblyControlFlags)((module.Flags & DebuggerInfoMask) >> DebuggerInfoShift); 411void ILoader.SetDebuggerInfoBits(ModuleHandle handle, DebuggerAssemblyControlFlags newBits) 432bool encRequested = (newBits & DebuggerAssemblyControlFlags.DACF_ENC_ENABLED) != 0;
Microsoft.Diagnostics.DataContractReader.Legacy (14)
ClrDataModule.cs (5)
818DebuggerAssemblyControlFlags bits = loader.GetDebuggerInfoBits(handle) 819& ~(DebuggerAssemblyControlFlags.DACF_ALLOW_JIT_OPTS | DebuggerAssemblyControlFlags.DACF_ENC_ENABLED); 820bits &= DebuggerAssemblyControlFlags.DACF_CONTROL_FLAGS_MASK; 824bits |= DebuggerAssemblyControlFlags.DACF_ALLOW_JIT_OPTS;
Dbi\DacDbiImpl.cs (9)
19using DACF = Microsoft.Diagnostics.DataContractReader.Contracts.DebuggerAssemblyControlFlags; 452DACF debuggerInfoBits = loader.GetDebuggerInfoBits(handle); 453DACF controlFlags = debuggerInfoBits & ~(DACF.DACF_ALLOW_JIT_OPTS | DACF.DACF_ENC_ENABLED); 454controlFlags &= DACF.DACF_CONTROL_FLAGS_MASK; 458controlFlags |= DACF.DACF_ALLOW_JIT_OPTS; 463bool fIgnorePdbs = (debuggerInfoBits & DACF.DACF_IGNORE_PDBS) != 0; 467controlFlags |= DACF.DACF_ENC_ENABLED;