2 writes to head
System.ServiceModel.Internals (2)
System\Runtime\InputQueue.cs (2)
981this.head = (this.head + 1) % this.items.Length; 994this.head = 0;
5 references to head
System.ServiceModel.Internals (5)
System\Runtime\InputQueue.cs (5)
978Item item = this.items[this.head]; 979this.items[this.head] = new Item(); 981this.head = (this.head + 1) % this.items.Length; 992newItems[i] = this.items[(head + i) % this.items.Length]; 997int tail = (this.head + this.totalCount) % this.items.Length;