2 writes to _kind
System.Private.CoreLib (2)
src\coreclr\nativeaot\Runtime.Base\src\System\Runtime\ExceptionHandling.cs (2)
501
_kind
|= ExKind.InstructionFaultFlag;
514
_kind
= rethrownExInfo._kind | ExKind.RethrowFlag;
3 references to _kind
System.Private.CoreLib (3)
src\coreclr\nativeaot\Runtime.Base\src\System\Runtime\ExceptionHandling.cs (3)
514
_kind = rethrownExInfo.
_kind
| ExKind.RethrowFlag;
742
bool isFirstRethrowFrame = (exInfo.
_kind
& ExKind.RethrowFlag) != 0;
753
bool isValid = frameIter.Init(exInfo._pExContext, (exInfo.
_kind
& ExKind.InstructionFaultFlag) != 0, &isExceptionIntercepted);