2 writes to items
System.ServiceModel.Internals (2)
System\Runtime\InputQueue.cs (2)
925
this.
items
= new Item[1];
995
this.
items
= newItems;
9 references to items
System.ServiceModel.Internals (9)
System\Runtime\InputQueue.cs (9)
978
Item item = this.
items
[this.head];
979
this.
items
[this.head] = new Item();
981
this.head = (this.head + 1) % this.
items
.Length;
987
if (this.totalCount == this.
items
.Length)
989
Item[] newItems = new Item[this.
items
.Length * 2];
992
newItems[i] = this.
items
[(head + i) % this.
items
.Length];
997
int tail = (this.head + this.totalCount) % this.
items
.Length;
998
this.
items
[tail] = item;