4 writes to _lastBuffer
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\BufferBuilder.cs (4)
304_lastBuffer = null; 436_lastBuffer = new char[BufferSize]; 505_lastBuffer = newBuffer; 557_lastBuffer = _buffers[i].buffer;
10 references to _lastBuffer
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\BufferBuilder.cs (10)
154if (_lastBuffer == null) 158if (_lastBufferIndex == _lastBuffer.Length) 162_lastBuffer[_lastBufferIndex++] = value; 285if (_lastBuffer != null) 433Debug.Assert(_lastBuffer == null); 438_buffers[0].buffer = _lastBuffer; 449if (_lastBuffer == null) 456if (_lastBufferIndex >= _lastBuffer.Length) 462int free = _lastBuffer.Length - _lastBufferIndex; 468fixed (char* pLastBuffer = &_lastBuffer[_lastBufferIndex])