2 writes to chunks
System.ServiceModel.Internals (2)
System\Runtime\BufferedOutputStream.cs (2)
34
this.
chunks
= new byte[4][];
131
this.
chunks
= newChunks;
9 references to chunks
System.ServiceModel.Internals (9)
System\Runtime\BufferedOutputStream.cs (9)
107
this.
chunks
[0] = this.currentChunk;
127
if (this.chunkCount == this.
chunks
.Length)
129
byte[][] newChunks = new byte[this.
chunks
.Length * 2][];
130
Array.Copy(this.
chunks
, newChunks, this.
chunks
.Length);
133
this.
chunks
[this.chunkCount++] = newChunk;
165
this.bufferManager.ReturnBuffer(this.
chunks
[i]);
166
this.
chunks
[i] = null;
231
byte[] chunk = this.
chunks
[i];