2 writes to head
System.ServiceModel (2)
System\ServiceModel\Channels\BufferedOutputAsyncStream.cs (2)
516this.head = 0; 562this.head = (this.head + 1) % size;
4 references to head
System.ServiceModel (4)
System\ServiceModel\Channels\BufferedOutputAsyncStream.cs (4)
559Slot s = buffers[head]; 562this.head = (this.head + 1) % size; 591int tail = (this.head + this.count) % size; 610Slot s = this.buffers[head];