2 writes to _items
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\InputQueue.cs (2)
922_items = new Item[1]; 992_items = newItems;
9 references to _items
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\InputQueue.cs (9)
975Item item = _items[_head]; 976_items[_head] = new Item(); 978_head = (_head + 1) % _items.Length; 984if (_totalCount == _items.Length) 986Item[] newItems = new Item[_items.Length * 2]; 989newItems[i] = _items[(_head + i) % _items.Length]; 994int tail = (_head + _totalCount) % _items.Length; 995_items[tail] = item;