2 writes to m_HandleList
mscorlib (2)
system\runtime\interopservices\gchandlecookietable.cs (2)
35m_HandleList = new ObjectHandle[InitialHandleCount]; 185m_HandleList = newHandleList;
13 references to m_HandleList
mscorlib (13)
system\runtime\interopservices\gchandlecookietable.cs (13)
42m_HandleList[i] = ObjectHandle.Zero; 63if ((m_FreeIndex < m_HandleList.Length) && (Volatile.Read(ref m_HandleList[m_FreeIndex]) == ObjectHandle.Zero)) 65Volatile.Write(ref m_HandleList[m_FreeIndex], handle); 77if (m_HandleList[m_FreeIndex] == ObjectHandle.Zero) 79Volatile.Write(ref m_HandleList[m_FreeIndex], handle); 89if (m_FreeIndex + 1 == m_HandleList.Length) 112oh = Volatile.Read(ref m_HandleList[GetIndexFromCookie(cookie)]); 137Volatile.Write(ref m_HandleList[index], ObjectHandle.Zero); 159if (index >= m_HandleList.Length) 162if (Volatile.Read(ref m_HandleList[index]) == ObjectHandle.Zero) 177int CurrLength = m_HandleList.Length; 182Array.Copy(m_HandleList, newHandleList, CurrLength);