12 references to ZLib
System.IO.Compression (12)
src\runtime\src\libraries\Common\src\System\IO\Compression\ZLibNative.cs (9)
188
/// <c>false</c>, which can for instance happen if the underlying ZLib <see cref="Interop.
ZLib
.InflateEnd"/>
189
/// or <see cref="Interop.
ZLib
.DeflateEnd"/> routines return an failure error code.
337
errC = Interop.
ZLib
.DeflateInit2_(stream, level, CompressionMethod.Deflated, windowBits, memLevel, strategy);
356
return Interop.
ZLib
.Deflate(stream, flush);
367
ErrorCode errC = Interop.
ZLib
.DeflateEnd(stream);
384
errC = Interop.
ZLib
.InflateInit2_(stream, windowBits);
403
return Interop.
ZLib
.InflateReset2_(stream, windowBits);
414
return Interop.
ZLib
.Inflate(stream, flush);
425
ErrorCode errC = Interop.
ZLib
.InflateEnd(stream);
System\IO\Compression\Crc32Helper.ZLib.cs (2)
17
return Interop.
ZLib
.crc32(crc32, bufferPtr, length);
25
return Interop.
ZLib
.crc32(crc32, bufferPtr, buffer.Length);
System\IO\Compression\DeflateEncoder.cs (1)
156
return Interop.
ZLib
.compressBound((uint)inputLength);