24 references to InternalFrameType
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IStackWalk.cs (1)
77
InternalFrameType
InternalFrameType);
Microsoft.Diagnostics.DataContractReader.Contracts (12)
Contracts\StackWalk\FrameHandling\FrameHelpers.cs (11)
291
public
InternalFrameType
GetInternalFrameType(TargetPointer framePtr)
301
return
InternalFrameType
.Exception;
304
return
InternalFrameType
.ClassInit;
307
return
InternalFrameType
.JitCompilation;
310
return
InternalFrameType
.FuncEval;
313
return
InternalFrameType
.U2M;
316
return
InternalFrameType
.InternalCall;
324
return
InternalFrameType
.M2U;
331
?
InternalFrameType
.M2U
332
:
InternalFrameType
.None;
335
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)
1680
return frame.InternalFrameType != Contracts.
InternalFrameType
.None
1739
if (frame.InternalFrameType == Contracts.
InternalFrameType
.FuncEval)
1835
private static CorDebugInternalFrameType ToCorDebugInternalFrameType(Contracts.
InternalFrameType
frameType)
1838
Contracts.
InternalFrameType
.None => CorDebugInternalFrameType.STUBFRAME_NONE,
1839
Contracts.
InternalFrameType
.M2U => CorDebugInternalFrameType.STUBFRAME_M2U,
1840
Contracts.
InternalFrameType
.U2M => CorDebugInternalFrameType.STUBFRAME_U2M,
1841
Contracts.
InternalFrameType
.FuncEval => CorDebugInternalFrameType.STUBFRAME_FUNC_EVAL,
1842
Contracts.
InternalFrameType
.InternalCall => CorDebugInternalFrameType.STUBFRAME_INTERNALCALL,
1843
Contracts.
InternalFrameType
.ClassInit => CorDebugInternalFrameType.STUBFRAME_CLASS_INIT,
1844
Contracts.
InternalFrameType
.Exception => CorDebugInternalFrameType.STUBFRAME_EXCEPTION,
1845
Contracts.
InternalFrameType
.JitCompilation => CorDebugInternalFrameType.STUBFRAME_JIT_COMPILATION,