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)
1054Item item = _items[_head]; 1055_items[_head] = new Item(); 1057_head = (_head + 1) % _items.Length; 1063if (ItemCount == _items.Length) 1065Item[] newItems = new Item[_items.Length * 2]; 1068newItems[i] = _items[(_head + i) % _items.Length]; 1073int tail = (_head + ItemCount) % _items.Length; 1074_items[tail] = item;