20 references to DebuggerAssemblyControlFlags
Microsoft.Diagnostics.DataContractReader.Abstractions (2)
Contracts\ILoader.cs (2)
150DebuggerAssemblyControlFlags GetDebuggerInfoBits(ModuleHandle handle) => throw new NotImplementedException(); 151void 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)
12using DACF = Microsoft.Diagnostics.DataContractReader.Contracts.DebuggerAssemblyControlFlags; 385DACF debuggerInfoBits = loader.GetDebuggerInfoBits(handle); 386DACF controlFlags = debuggerInfoBits & ~(DACF.DACF_ALLOW_JIT_OPTS | DACF.DACF_ENC_ENABLED); 387controlFlags &= DACF.DACF_CONTROL_FLAGS_MASK; 391controlFlags |= DACF.DACF_ALLOW_JIT_OPTS; 396bool fIgnorePdbs = (debuggerInfoBits & DACF.DACF_IGNORE_PDBS) != 0; 400controlFlags |= DACF.DACF_ENC_ENABLED;