1 write to _state
System.IO.Compression.Brotli (1)
System\IO\Compression\dec\BrotliDecoder.cs (1)
19
_state
= Interop.Brotli.BrotliDecoderCreateInstance(IntPtr.Zero, IntPtr.Zero, IntPtr.Zero);
6 references to _state
System.IO.Compression.Brotli (6)
System\IO\Compression\dec\BrotliDecoder.cs (6)
20
if (
_state
.IsInvalid)
27
if (
_state
== null)
35
_state
?.Dispose();
58
Debug.Assert(
_state
!= null);
62
if (Interop.Brotli.BrotliDecoderIsFinished(
_state
) != Interop.BOOL.FALSE)
76
int brotliResult = Interop.Brotli.BrotliDecoderDecompressStream(
_state
, ref availableInput, &inBytes, ref availableOutput, &outBytes, out _);