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)
316
if(
_head
!= null)
320
_head
.SequentialPrev = item;
321
item.SequentialNext =
_head
;
359
Debug.Assert(
_head
!= item, "PriorityQueue.RemoveItemFromSequentialChain: the head should not point to this item.");
365
Debug.Assert(
_head
== item, "PriorityQueue.RemoveItemFromSequentialChain: the head should point to this item.");