7 instantiations of SparseMemoryStream
WindowsBase (7)
Base\MS\Internal\IO\Packaging\CompoundFile\CompressionTransform.cs (1)
105
Stream tempStream = new
SparseMemoryStream
(_lowWaterMark, _highWaterMark);
Base\MS\Internal\IO\Packaging\CompoundFile\RightsManagementEncryptedStream.cs (2)
936
private SparseMemoryStream _readCache = new
SparseMemoryStream
(Int32.MaxValue, Int64.MaxValue, false);
937
private SparseMemoryStream _writeCache = new
SparseMemoryStream
(Int32.MaxValue, Int64.MaxValue, false);
Base\MS\Internal\IO\Packaging\CompressStream.cs (1)
722
SparseMemoryStream memStream = new
SparseMemoryStream
(_lowWaterMark, _highWaterMark);
Base\MS\Internal\IO\Zip\ZipIOBlockManager.cs (1)
724
cachePrefixStream = new
SparseMemoryStream
(_lowWaterMark, _highWaterMark);
Base\MS\Internal\IO\Zip\ZipIOFileItemStream.cs (2)
122
_sparseMemoryStreamSuffix = new
SparseMemoryStream
(_lowWaterMark, _highWaterMark);
311
_sparseMemoryStreamSuffix = new
SparseMemoryStream
(_lowWaterMark, _highWaterMark);
10 references to SparseMemoryStream
WindowsBase (10)
Base\MS\Internal\IO\Packaging\CompoundFile\RightsManagementEncryptedStream.cs (5)
465
private int ReadFromCache(
SparseMemoryStream
cache, long start, int count, byte[] buffer, int bufferOffset)
521
private int FindIndexOfBlockAtOffset(
SparseMemoryStream
cache, long start, out bool match)
557
private long FindOffsetOfNextAvailableBlockAfter(
SparseMemoryStream
cache, long start)
936
private
SparseMemoryStream
_readCache = new SparseMemoryStream(Int32.MaxValue, Int64.MaxValue, false);
937
private
SparseMemoryStream
_writeCache = new SparseMemoryStream(Int32.MaxValue, Int64.MaxValue, false);
Base\MS\Internal\IO\Packaging\CompressStream.cs (1)
722
SparseMemoryStream
memStream = new SparseMemoryStream(_lowWaterMark, _highWaterMark);
Base\MS\Internal\IO\Zip\ZipIOBlockManager.cs (1)
660
ref
SparseMemoryStream
cachePrefixStream)
Base\MS\Internal\IO\Zip\ZipIOFileItemStream.cs (2)
587
private
SparseMemoryStream
_cachePrefixStream;
598
private
SparseMemoryStream
_sparseMemoryStreamSuffix;
Base\MS\Internal\IO\Zip\ZipIORawDataFileBlock.cs (1)
255
private
SparseMemoryStream
_cachePrefixStream = null;