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.
237
ErrorCode errC =
Interop
.ZLib.DeflateInit2_(stream, level, CompressionMethod.Deflated, windowBits, memLevel, strategy);
251
return
Interop
.ZLib.Deflate(stream, flush);
262
ErrorCode errC =
Interop
.ZLib.DeflateEnd(stream);
276
ErrorCode errC =
Interop
.ZLib.InflateInit2_(stream, windowBits);
290
return
Interop
.ZLib.InflateReset2_(stream, windowBits);
301
return
Interop
.ZLib.Inflate(stream, flush);
312
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);