1 implementation of RawContextFlags
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\StackWalk\Context\ContextHolder.cs (1)
25public uint RawContextFlags { get => Context.RawContextFlags; set => Context.RawContextFlags = value; }
4 writes to RawContextFlags
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\StackWalk\FrameHandling\FrameHelpers.cs (2)
492context.RawContextFlags = flags; 536context.RawContextFlags = context.FullContextFlags;
Contracts\StackWalk\StackWalk_1.cs (1)
1358context.RawContextFlags = context.FullContextFlags;
Microsoft.Diagnostics.DataContractReader.Legacy (1)
Dbi\DacDbiImpl.cs (1)
2136stripped.RawContextFlags &= ~0x40u;
4 references to RawContextFlags
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\StackWalk\StackWalk_1.cs (1)
203=> (context.RawContextFlags & FrameHelpers.ContextExceptionActive) != 0;
Microsoft.Diagnostics.DataContractReader.Legacy (3)
Dbi\DacDbiImpl.cs (3)
1716sb.Append($" | flags cdac=0x{cdacCtx.RawContextFlags:X8} dac=0x{dacCtx.RawContextFlags:X8}"); 1968if ((ctx.RawContextFlags & ctx.ContextControlFlags) != 0)