1 write to _stringLength
IIS.LongTests (1)
src\Shared\runtime\Http2\Hpack\HPackDecoder.cs (1)
588
_stringLength
= length;
12 references to _stringLength
IIS.LongTests (12)
src\Shared\runtime\Http2\Hpack\HPackDecoder.cs (12)
425
int count = Math.Min(
_stringLength
- _stringIndex, data.Length - currentIndex);
430
if (count ==
_stringLength
&& !_huffman)
434
_headerNameLength =
_stringLength
;
452
if (_stringIndex ==
_stringLength
)
463
int count = Math.Min(
_stringLength
- _stringIndex, data.Length - currentIndex);
467
if (count ==
_stringLength
&& !_huffman)
483
if (_stringIndex ==
_stringLength
)
599
int decodedLength = Huffman.Decode(new ReadOnlySpan<byte>(_stringOctets, 0,
_stringLength
), ref dst);
608
Debug.Assert(
_stringLength
<= _maxHeadersLength, "String length should have been checked prior to decode.");
610
Buffer.BlockCopy(_stringOctets, 0, dst, 0,
_stringLength
);
611
return
_stringLength
;
637
stringLength = stringLength >= 0 ? stringLength :
_stringLength
;