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