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