24 references to InternalFrameType
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IStackWalk.cs (1)
65
InternalFrameType
InternalFrameType);
Microsoft.Diagnostics.DataContractReader.Contracts (12)
Contracts\StackWalk\FrameHandling\FrameHelpers.cs (11)
293
public
InternalFrameType
GetInternalFrameType(TargetPointer framePtr)
303
return
InternalFrameType
.Exception;
306
return
InternalFrameType
.ClassInit;
309
return
InternalFrameType
.JitCompilation;
312
return
InternalFrameType
.FuncEval;
315
return
InternalFrameType
.U2M;
318
return
InternalFrameType
.InternalCall;
326
return
InternalFrameType
.M2U;
333
?
InternalFrameType
.M2U
334
:
InternalFrameType
.None;
337
return
InternalFrameType
.None;
Contracts\StackWalk\FrameHandling\FrameIterator.cs (1)
70
public
InternalFrameType
GetCurrentInternalFrameType() => frameHelpers.GetInternalFrameType(currentFramePointer);
Microsoft.Diagnostics.DataContractReader.Legacy (11)
Dbi\DacDbiImpl.cs (11)
1297
return frame.InternalFrameType != Contracts.
InternalFrameType
.None
1356
if (frame.InternalFrameType == Contracts.
InternalFrameType
.FuncEval)
1452
private static CorDebugInternalFrameType ToCorDebugInternalFrameType(Contracts.
InternalFrameType
frameType)
1455
Contracts.
InternalFrameType
.None => CorDebugInternalFrameType.STUBFRAME_NONE,
1456
Contracts.
InternalFrameType
.M2U => CorDebugInternalFrameType.STUBFRAME_M2U,
1457
Contracts.
InternalFrameType
.U2M => CorDebugInternalFrameType.STUBFRAME_U2M,
1458
Contracts.
InternalFrameType
.FuncEval => CorDebugInternalFrameType.STUBFRAME_FUNC_EVAL,
1459
Contracts.
InternalFrameType
.InternalCall => CorDebugInternalFrameType.STUBFRAME_INTERNALCALL,
1460
Contracts.
InternalFrameType
.ClassInit => CorDebugInternalFrameType.STUBFRAME_CLASS_INIT,
1461
Contracts.
InternalFrameType
.Exception => CorDebugInternalFrameType.STUBFRAME_EXCEPTION,
1462
Contracts.
InternalFrameType
.JitCompilation => CorDebugInternalFrameType.STUBFRAME_JIT_COMPILATION,