13 references to Interop
System.IO.Compression (13)
src\libraries\Common\src\System\IO\Compression\ZipArchiveEntryConstants.Unix.cs (2)
12(Interop.Sys.FileTypes.S_IFREG | 23(Interop.Sys.FileTypes.S_IFDIR |
src\libraries\Common\src\System\IO\Compression\ZLibNative.cs (9)
151/// <c>false</c>, which can for instance happen if the underlying ZLib <see cref="Interop.ZLib.InflateEnd"/> 152/// or <see cref="Interop.ZLib.DeflateEnd"/> routines return an failure error code. 237ErrorCode errC = Interop.ZLib.DeflateInit2_(stream, level, CompressionMethod.Deflated, windowBits, memLevel, strategy); 251return Interop.ZLib.Deflate(stream, flush); 262ErrorCode errC = Interop.ZLib.DeflateEnd(stream); 276ErrorCode errC = Interop.ZLib.InflateInit2_(stream, windowBits); 290return Interop.ZLib.InflateReset2_(stream, windowBits); 301return Interop.ZLib.Inflate(stream, flush); 312ErrorCode 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);