4 writes to _head
WindowsBase (4)
Base\MS\Internal\PriorityQueue.cs (4)
15_head = _tail = null; 322_head = item; 328_head = _tail = item; 367_head = item.SequentialNext;
5 references to _head
WindowsBase (5)
Base\MS\Internal\PriorityQueue.cs (5)
316if(_head != null) 320_head.SequentialPrev = item; 321item.SequentialNext = _head; 359Debug.Assert(_head != item, "PriorityQueue.RemoveItemFromSequentialChain: the head should not point to this item."); 365Debug.Assert(_head == item, "PriorityQueue.RemoveItemFromSequentialChain: the head should point to this item.");