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)
425int count = Math.Min(_stringLength - _stringIndex, data.Length - currentIndex); 430if (count == _stringLength && !_huffman) 434_headerNameLength = _stringLength; 452if (_stringIndex == _stringLength) 463int count = Math.Min(_stringLength - _stringIndex, data.Length - currentIndex); 467if (count == _stringLength && !_huffman) 483if (_stringIndex == _stringLength) 599int decodedLength = Huffman.Decode(new ReadOnlySpan<byte>(_stringOctets, 0, _stringLength), ref dst); 608Debug.Assert(_stringLength <= _maxHeadersLength, "String length should have been checked prior to decode."); 610Buffer.BlockCopy(_stringOctets, 0, dst, 0, _stringLength); 611return _stringLength; 637stringLength = stringLength >= 0 ? stringLength : _stringLength;