9 references to FlushCode
System (9)
parent\parent\parent\InternalApis\NDP_FX\inc\ZLibNative.cs (4)
268private unsafe delegate ErrorCode DeflateDelegate(ZStream* stream, FlushCode flush); 286private unsafe delegate ErrorCode InflateDelegate(ZStream* stream, FlushCode flush); 652public ErrorCode Deflate(FlushCode flush) { 709public ErrorCode Inflate(FlushCode flush) {
sys\System\IO\compression\DeflaterZLib.cs (5)
16using ZFlushCode = System.IO.Compression.ZLibNative.FlushCode; 165ReadDeflateOutput(outputBuffer, ZFlushCode.NoFlush, out bytesRead); 175private unsafe ZErrorCode ReadDeflateOutput(byte[] outputBuffer, ZFlushCode flushCode, out int bytesRead) { 202ZErrorCode errC = ReadDeflateOutput(outputBuffer, ZFlushCode.Finish, out bytesRead); 258private ZErrorCode Deflate(ZFlushCode flushCode) {