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. 337errC = Interop.ZLib.DeflateInit2_(stream, level, CompressionMethod.Deflated, windowBits, memLevel, strategy); 356return Interop.ZLib.Deflate(stream, flush); 367ErrorCode errC = Interop.ZLib.DeflateEnd(stream); 384errC = Interop.ZLib.InflateInit2_(stream, windowBits); 403return Interop.ZLib.InflateReset2_(stream, windowBits); 414return Interop.ZLib.Inflate(stream, flush); 425ErrorCode errC = Interop.ZLib.InflateEnd(stream);
System\IO\Compression\Crc32Helper.ZLib.cs (2)
17return Interop.ZLib.crc32(crc32, bufferPtr, length); 25return Interop.ZLib.crc32(crc32, bufferPtr, buffer.Length);
System\IO\Compression\DeflateEncoder.cs (1)
156return Interop.ZLib.compressBound((uint)inputLength);