2 writes to _items
System.ServiceModel.Primitives (2)
Internals\System\Runtime\InputQueue.cs (2)
1004
_items
= new Item[1];
1071
_items
= newItems;
9 references to _items
System.ServiceModel.Primitives (9)
Internals\System\Runtime\InputQueue.cs (9)
1054
Item item =
_items
[_head];
1055
_items
[_head] = new Item();
1057
_head = (_head + 1) %
_items
.Length;
1063
if (ItemCount ==
_items
.Length)
1065
Item[] newItems = new Item[
_items
.Length * 2];
1068
newItems[i] =
_items
[(_head + i) %
_items
.Length];
1073
int tail = (_head + ItemCount) %
_items
.Length;
1074
_items
[tail] = item;