24 references to InternalFrameType
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IStackWalk.cs (1)
81
InternalFrameType
InternalFrameType);
Microsoft.Diagnostics.DataContractReader.Contracts (12)
Contracts\StackWalk\FrameHandling\FrameHelpers.cs (11)
292
public
InternalFrameType
GetInternalFrameType(TargetPointer framePtr)
302
return
InternalFrameType
.Exception;
305
return
InternalFrameType
.ClassInit;
308
return
InternalFrameType
.JitCompilation;
311
return
InternalFrameType
.FuncEval;
314
return
InternalFrameType
.U2M;
317
return
InternalFrameType
.InternalCall;
325
return
InternalFrameType
.M2U;
332
?
InternalFrameType
.M2U
333
:
InternalFrameType
.None;
336
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)
2334
return frame.InternalFrameType != Contracts.
InternalFrameType
.None
2395
if (frame.InternalFrameType == Contracts.
InternalFrameType
.FuncEval)
2502
private static CorDebugInternalFrameType ToCorDebugInternalFrameType(Contracts.
InternalFrameType
frameType)
2505
Contracts.
InternalFrameType
.None => CorDebugInternalFrameType.STUBFRAME_NONE,
2506
Contracts.
InternalFrameType
.M2U => CorDebugInternalFrameType.STUBFRAME_M2U,
2507
Contracts.
InternalFrameType
.U2M => CorDebugInternalFrameType.STUBFRAME_U2M,
2508
Contracts.
InternalFrameType
.FuncEval => CorDebugInternalFrameType.STUBFRAME_FUNC_EVAL,
2509
Contracts.
InternalFrameType
.InternalCall => CorDebugInternalFrameType.STUBFRAME_INTERNALCALL,
2510
Contracts.
InternalFrameType
.ClassInit => CorDebugInternalFrameType.STUBFRAME_CLASS_INIT,
2511
Contracts.
InternalFrameType
.Exception => CorDebugInternalFrameType.STUBFRAME_EXCEPTION,
2512
Contracts.
InternalFrameType
.JitCompilation => CorDebugInternalFrameType.STUBFRAME_JIT_COMPILATION,