2 writes to _stringOctets
IIS.FunctionalTests (2)
src\Shared\runtime\Http2\Hpack\HPackDecoder.cs (2)
121
_stringOctets
= new byte[DefaultStringOctetsSize];
585
_stringOctets
= new byte[Math.Max(length, Math.Min(_stringOctets.Length * 2, _maxHeadersLength))];
6 references to _stringOctets
IIS.FunctionalTests (6)
src\Shared\runtime\Http2\Hpack\HPackDecoder.cs (6)
448
data.Slice(currentIndex, count).CopyTo(
_stringOctets
.AsSpan(_stringIndex));
479
data.Slice(currentIndex, count).CopyTo(
_stringOctets
.AsSpan(_stringIndex));
578
if (length >
_stringOctets
.Length)
585
_stringOctets = new byte[Math.Max(length, Math.Min(
_stringOctets
.Length * 2, _maxHeadersLength))];
599
return Huffman.Decode(new ReadOnlySpan<byte>(
_stringOctets
, 0, _stringLength), ref dst);
604
Buffer.BlockCopy(
_stringOctets
, 0, dst, 0, _stringLength);