1 instantiation of __ExceptionInfo
mscorlib (1)
system\reflection\emit\ilgenerator.cs (1)
983
__ExceptionInfo exceptionInfo = new
__ExceptionInfo
(m_length, endLabel);
41 references to __ExceptionInfo
mscorlib (41)
system\reflection\emit\dynamicilgenerator.cs (6)
409
__ExceptionInfo
current = CurrExcStack[CurrExcStackCount - 1];
413
if (current.GetCurrentState() ==
__ExceptionInfo
.State_Filter)
687
private
__ExceptionInfo
[] m_exceptions;
843
private static int CalculateNumberOfExceptions(
__ExceptionInfo
[] excp)
904
if ((exception->Flags &
__ExceptionInfo
.Finally) !=
__ExceptionInfo
.Finally)
system\reflection\emit\ilgenerator.cs (29)
65
private static
__ExceptionInfo
[] EnlargeArray(
__ExceptionInfo
[] incoming)
67
__ExceptionInfo
[] temp = new
__ExceptionInfo
[incoming.Length*2];
89
private
__ExceptionInfo
[] m_exceptions; //This is the list of all of the exceptions in this ILStream.
90
private
__ExceptionInfo
[] m_currExcStack; //This is the stack of exceptions which we're currently in.
109
internal
__ExceptionInfo
[] CurrExcStack
304
internal
__ExceptionInfo
[] GetExceptions()
306
__ExceptionInfo
[]temp;
317
temp = new
__ExceptionInfo
[m_exceptionCount];
397
private static void SortExceptions(
__ExceptionInfo
[]exceptions)
404
__ExceptionInfo
temp;
966
m_exceptions = new
__ExceptionInfo
[DefaultExceptionArraySize];
971
m_currExcStack = new
__ExceptionInfo
[DefaultExceptionArraySize];
983
__ExceptionInfo
exceptionInfo = new __ExceptionInfo(m_length, endLabel);
999
__ExceptionInfo
current = m_currExcStack[m_currExcStackCount-1];
1006
if (state ==
__ExceptionInfo
.State_Filter ||
1007
state ==
__ExceptionInfo
.State_Try)
1014
if (state ==
__ExceptionInfo
.State_Catch) {
1016
} else if (state ==
__ExceptionInfo
.State_Finally || state ==
__ExceptionInfo
.State_Fault) {
1038
__ExceptionInfo
current = m_currExcStack[m_currExcStackCount-1];
1053
__ExceptionInfo
current = m_currExcStack[m_currExcStackCount-1];
1055
if (current.GetCurrentState() ==
__ExceptionInfo
.State_Filter) {
1080
__ExceptionInfo
current = m_currExcStack[m_currExcStackCount-1];
1094
__ExceptionInfo
current = m_currExcStack[m_currExcStackCount-1];
1098
if (state !=
__ExceptionInfo
.State_Try)
1471
m_catchClass=
__ExceptionInfo
.EnlargeArray(m_catchClass);
1603
internal bool IsInner(
__ExceptionInfo
exc) {
system\reflection\emit\methodbuilder.cs (6)
212
__ExceptionInfo
[] excp;
280
case
__ExceptionInfo
.None:
281
case
__ExceptionInfo
.Fault:
282
case
__ExceptionInfo
.Filter:
286
case
__ExceptionInfo
.Finally:
451
internal int CalculateNumberOfExceptions(
__ExceptionInfo
[] excp)