4 writes to _tail
WindowsBase (4)
Base\MS\Internal\PriorityQueue.cs (4)
15
_head =
_tail
= null;
328
_head =
_tail
= item;
345
_tail
= item;
381
_tail
= item.SequentialPrev;
6 references to _tail
WindowsBase (6)
Base\MS\Internal\PriorityQueue.cs (6)
50
InsertItemInSequentialChain(priorityItem,
_tail
);
318
Debug.Assert(
_tail
!= null, "PriorityQueue.InsertItemInSequentialChain: both the head and the tail should not be null.");
326
Debug.Assert(
_tail
== null, "PriorityQueue.InsertItemInSequentialChain: both the head and the tail should be null.");
343
Debug.Assert(
_tail
== after, "PriorityQueue.InsertItemInSequentialChain: the tail should be the item we are inserting after.");
373
Debug.Assert(
_tail
!= item, "PriorityQueue.RemoveItemFromSequentialChain: the tail should not point to this item.");
379
Debug.Assert(
_tail
== item, "PriorityQueue.RemoveItemFromSequentialChain: the tail should point to this item.");