5 writes to _currentChunkSize
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\BufferedOutputStream.cs (5)
102_currentChunkSize = 0; 133_currentChunkSize = 0; 261_currentChunkSize = _currentChunk.Length; 273_currentChunkSize += size; 289_currentChunk[_currentChunkSize++] = value;
6 references to _currentChunkSize
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\BufferedOutputStream.cs (6)
194bufferSize = _currentChunkSize; 208Buffer.BlockCopy(_currentChunk, 0, buffer, offset, _currentChunkSize); 252int remainingSizeInChunk = _currentChunk.Length - _currentChunkSize; 259Buffer.BlockCopy(buffer, offset, _currentChunk, _currentChunkSize, remainingSizeInChunk); 270Buffer.BlockCopy(buffer, offset, _currentChunk, _currentChunkSize, size); 285if (_currentChunkSize == _currentChunk.Length)