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)
975
Item item =
_items
[_head];
976
_items
[_head] = new Item();
978
_head = (_head + 1) %
_items
.Length;
984
if (_totalCount ==
_items
.Length)
986
Item[] newItems = new Item[
_items
.Length * 2];
989
newItems[i] =
_items
[(_head + i) %
_items
.Length];
994
int tail = (_head + _totalCount) %
_items
.Length;
995
_items
[tail] = item;