2 writes to _array
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\ConnectionPool\RequestQueue.cs (2)
28_array = Array.Empty<QueueItem>(); 108_array = newArray;
14 references to _array
System.Net.Http (14)
System\Net\Http\SocketsHttpHandler\ConnectionPool\RequestQueue.cs (14)
37if (_size == _array.Length) 42_array[_tail] = queueItem; 53QueueItem[] array = _array; 77queueItem = _array[_head]; 84if (tmp == _array.Length) 93var newArray = new QueueItem[Math.Max(4, _array.Length * 2)]; 99Array.Copy(_array, _head, newArray, 0, _size); 103Array.Copy(_array, _head, newArray, 0, _array.Length - _head); 104Array.Copy(_array, 0, newArray, _array.Length - _head, _tail); 172if (index >= _array.Length) 174index -= _array.Length; 177return _array[index];