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