1 write to _stringLength
Microsoft.AspNetCore.Server.Kestrel.Core (1)
src\Shared\runtime\Http2\Hpack\HPackDecoder.cs (1)
583
_stringLength
= length;
11 references to _stringLength
Microsoft.AspNetCore.Server.Kestrel.Core (11)
src\Shared\runtime\Http2\Hpack\HPackDecoder.cs (11)
420
int count = Math.Min(
_stringLength
- _stringIndex, data.Length - currentIndex);
425
if (count ==
_stringLength
&& !_huffman)
429
_headerNameLength =
_stringLength
;
447
if (_stringIndex ==
_stringLength
)
458
int count = Math.Min(
_stringLength
- _stringIndex, data.Length - currentIndex);
462
if (count ==
_stringLength
&& !_huffman)
478
if (_stringIndex ==
_stringLength
)
594
return Huffman.Decode(new ReadOnlySpan<byte>(_stringOctets, 0,
_stringLength
), ref dst);
599
Buffer.BlockCopy(_stringOctets, 0, dst, 0,
_stringLength
);
600
return
_stringLength
;
626
stringLength = stringLength >= 0 ? stringLength :
_stringLength
;