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)
154
if (
_lastBuffer
== null)
158
if (_lastBufferIndex ==
_lastBuffer
.Length)
162
_lastBuffer
[_lastBufferIndex++] = value;
285
if (
_lastBuffer
!= null)
433
Debug.Assert(
_lastBuffer
== null);
438
_buffers[0].buffer =
_lastBuffer
;
449
if (
_lastBuffer
== null)
456
if (_lastBufferIndex >=
_lastBuffer
.Length)
462
int free =
_lastBuffer
.Length - _lastBufferIndex;
468
fixed (char* pLastBuffer = &
_lastBuffer
[_lastBufferIndex])