2 writes to _chunks
System.ServiceModel.Primitives (2)
Internals\System\Runtime\BufferedOutputStream.cs (2)
33
_chunks
= new byte[4][];
130
_chunks
= newChunks;
9 references to _chunks
System.ServiceModel.Primitives (9)
Internals\System\Runtime\BufferedOutputStream.cs (9)
106
_chunks
[0] = _currentChunk;
126
if (_chunkCount ==
_chunks
.Length)
128
byte[][] newChunks = new byte[
_chunks
.Length * 2][];
129
Array.Copy(
_chunks
, newChunks,
_chunks
.Length);
132
_chunks
[_chunkCount++] = newChunk;
164
_bufferManager.ReturnBuffer(
_chunks
[i]);
165
_chunks
[i] = null;
230
byte[] chunk =
_chunks
[i];