5 writes to bufferPos
mscorlib (5)
System\Diagnostics\Eventing\TraceLogging\DataCollector.cs (5)
99this.bufferPos = checked(this.bufferPos + size); 132this.bufferPos = checked(this.bufferPos + size); 172this.bufferPos = checked(this.bufferPos + size); 186this.bufferPos += 2; // Reserve space for the array length (filled in by EndEnumerable) 232this.bufferPos = 0;
10 references to bufferPos
mscorlib (10)
System\Diagnostics\Eventing\TraceLogging\DataCollector.cs (10)
98var oldPos = this.bufferPos; 99this.bufferPos = checked(this.bufferPos + size); 131var oldPos = this.bufferPos; 132this.bufferPos = checked(this.bufferPos + size); 171var oldPos = this.bufferPos; 172this.bufferPos = checked(this.bufferPos + size); 187return this.bufferPos; 230this.PinArray(this.buffer, this.bufferPos); 238var required = this.bufferPos; 247var required = this.bufferPos + additionalSize;