3 writes to _stringIndex
Microsoft.AspNetCore.Server.Kestrel.Core (3)
src\Shared\runtime\Http3\QPack\QPackDecoder.cs (3)
312_stringIndex += count; 396_stringIndex += count; 625_stringIndex = 0;
10 references to _stringIndex
Microsoft.AspNetCore.Server.Kestrel.Core (10)
src\Shared\runtime\Http3\QPack\QPackDecoder.cs (10)
287int count = Math.Min(_stringLength - _stringIndex, data.Length - currentIndex); 309EnsureStringCapacity(ref _stringOctets, _stringIndex + count, existingLength: _stringIndex); 310data.Slice(currentIndex, count).CopyTo(_stringOctets.AsSpan(_stringIndex)); 315if (_stringIndex == _stringLength) 373int count = Math.Min(_stringLength - _stringIndex, data.Length - currentIndex); 393EnsureStringCapacity(ref _stringOctets, _stringIndex + count, existingLength: _stringIndex); 394data.Slice(currentIndex, count).CopyTo(_stringOctets.AsSpan(_stringIndex)); 399if (_stringIndex == _stringLength)