4 writes to _current
WindowsBase (4)
Base\MS\Internal\IO\Packaging\CompressStream.cs (4)
545
_current
= null;
699
_current
= null;
710
_current
= new DeflateStream(_baseStream,
723
_current
= new CompressEmulationStream(_baseStream, memStream, _position, new DeflateEmulationTransform());
15 references to _current
WindowsBase (15)
Base\MS\Internal\IO\Packaging\CompressStream.cs (15)
120
if (
_current
== null)
123
int bytesRead =
_current
.Read(buffer, offset, count);
185
_current
.Write(buffer, offset, count);
260
_current
.Position = newPos; // Update to new value
306
_current
.SetLength(newLength);
329
if (
_current
!= null)
331
_current
.Flush();
405
UpdateUncompressedDataLength(
_current
.Length);
406
return
_current
.Length;
542
if (
_current
!= null)
544
_current
.Close(); // call Dispose()
647
n =
_current
.Read(buf, 0, (int)n);
685
if (
_current
!= null)
687
_current
.Close();
726
UpdateUncompressedDataLength(
_current
.Length);