20 references to DebuggerAssemblyControlFlags
Microsoft.Diagnostics.DataContractReader.Abstractions (2)
Contracts\ILoader.cs (2)
137DebuggerAssemblyControlFlags GetDebuggerInfoBits(ModuleHandle handle) => throw new NotImplementedException(); 138void SetDebuggerInfoBits(ModuleHandle handle, DebuggerAssemblyControlFlags newBits) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\Loader_1.cs (4)
430DebuggerAssemblyControlFlags ILoader.GetDebuggerInfoBits(ModuleHandle handle) 433return (DebuggerAssemblyControlFlags)((module.Flags & DebuggerInfoMask) >> DebuggerInfoShift); 436void ILoader.SetDebuggerInfoBits(ModuleHandle handle, DebuggerAssemblyControlFlags newBits) 457bool encRequested = (newBits & DebuggerAssemblyControlFlags.DACF_ENC_ENABLED) != 0;
Microsoft.Diagnostics.DataContractReader.Legacy (14)
ClrDataModule.cs (5)
940DebuggerAssemblyControlFlags bits = loader.GetDebuggerInfoBits(handle) 941& ~(DebuggerAssemblyControlFlags.DACF_ALLOW_JIT_OPTS | DebuggerAssemblyControlFlags.DACF_ENC_ENABLED); 942bits &= DebuggerAssemblyControlFlags.DACF_CONTROL_FLAGS_MASK; 946bits |= DebuggerAssemblyControlFlags.DACF_ALLOW_JIT_OPTS;
Dbi\DacDbiImpl.cs (9)
20using DACF = Microsoft.Diagnostics.DataContractReader.Contracts.DebuggerAssemblyControlFlags; 745DACF debuggerInfoBits = loader.GetDebuggerInfoBits(handle); 746DACF controlFlags = debuggerInfoBits & ~(DACF.DACF_ALLOW_JIT_OPTS | DACF.DACF_ENC_ENABLED); 747controlFlags &= DACF.DACF_CONTROL_FLAGS_MASK; 751controlFlags |= DACF.DACF_ALLOW_JIT_OPTS; 756bool fIgnorePdbs = (debuggerInfoBits & DACF.DACF_IGNORE_PDBS) != 0; 760controlFlags |= DACF.DACF_ENC_ENABLED;