2 writes to _chunks
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\BufferedOutputStream.cs (2)
32
_chunks
= new byte[4][];
129
_chunks
= newChunks;
9 references to _chunks
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\BufferedOutputStream.cs (9)
105
_chunks
[0] = _currentChunk;
125
if (_chunkCount ==
_chunks
.Length)
127
byte[][] newChunks = new byte[
_chunks
.Length * 2][];
128
Array.Copy(
_chunks
, newChunks,
_chunks
.Length);
131
_chunks
[_chunkCount++] = newChunk;
142
_bufferManager.ReturnBuffer(
_chunks
[i]);
143
_chunks
[i] = null;
204
byte[] chunk =
_chunks
[i];