4 writes to m_head
System (4)
sys\system\collections\concurrent\ConcurrentBag.cs (4)
984m_head = node; 992m_head = node; 1009m_head = m_head.m_next; 1058m_head = null;
13 references to m_head
System (13)
sys\system\collections\concurrent\ConcurrentBag.cs (13)
390if (currentList.m_head != null && TrySteal(currentList, out result, take)) 404if (currentList.m_head != null && TrySteal(currentList, out result, take)) 696if (currentList.m_head != null) 895Node currentNode = currentList.m_head; 981if (m_head == null) 990node.m_next = m_head; 991m_head.m_prev = node; 1007Debug.Assert(m_head != null); 1008Node head = m_head; 1009m_head = m_head.m_next; 1010if (m_head != null) 1012m_head.m_prev = null; 1030Node head = m_head;