6 writes to _buffer
mscorlib (6)
system\io\filestream.cs (6)
1526if (_buffer == null) _buffer = new byte[_bufferSize]; 1817if (_buffer==null) _buffer = new byte[_bufferSize]; 1956if (_buffer == null) _buffer = new byte[_bufferSize]; 2167if (_buffer == null) _buffer = new byte[_bufferSize]; 2251if (_writePos == 0) _buffer = new byte[_bufferSize]; 2423if (_buffer==null) _buffer = new byte[_bufferSize];
25 references to _buffer
mscorlib (25)
system\io\filestream.cs (25)
1378IAsyncResult asyncResult = BeginWriteCore(_buffer, 0, _writePos, null, null); 1397WriteCore(_buffer, 0, _writePos); 1526if (_buffer == null) _buffer = new byte[_bufferSize]; 1527n = ReadCore(_buffer, 0, _bufferSize); 1535Buffer.InternalBlockCopy(_buffer, _readPos, array, offset, n); 1657Buffer.InternalBlockCopy(_buffer, _readPos, _buffer, 0, _readLen - _readPos); 1669Buffer.InternalBlockCopy(_buffer, _readPos+diff, _buffer, 0, _readLen - (_readPos + diff)); 1786Buffer.InternalBlockCopy(array, offset, _buffer, _writePos, numBytes); 1797IAsyncResult result = BeginWriteCore(_buffer, 0, _writePos, null, null); 1802WriteCore(_buffer, 0, _writePos); 1817if (_buffer==null) _buffer = new byte[_bufferSize]; 1819Buffer.InternalBlockCopy(array, offset, _buffer, _writePos, count); 1924Buffer.InternalBlockCopy(_buffer, _readPos, array, offset, n); 1956if (_buffer == null) _buffer = new byte[_bufferSize]; 1957IAsyncResult bufferRead = BeginReadCore(_buffer, 0, _bufferSize, null, null, 0); 1961Buffer.InternalBlockCopy(_buffer, 0, array, offset, n); 1980Buffer.InternalBlockCopy(_buffer, _readPos, array, offset, n); 2167if (_buffer == null) _buffer = new byte[_bufferSize]; 2168_readLen = ReadCore(_buffer, 0, _bufferSize); 2174int result = _buffer[_readPos]; 2252Buffer.InternalBlockCopy(array, offset, _buffer, _writePos, numBytes); 2423if (_buffer==null) _buffer = new byte[_bufferSize]; 2428_buffer[_writePos] = value;