3 writes to _attemptedConnectionsOffset
System.Net.Http (3)
System\Net\Http\SocketsHttpHandler\ConnectionPool\RequestQueue.cs (3)
32
_attemptedConnectionsOffset
= 0;
62
_attemptedConnectionsOffset
--;
170
_attemptedConnectionsOffset
++;
6 references to _attemptedConnectionsOffset
System.Net.Http (6)
System\Net\Http\SocketsHttpHandler\ConnectionPool\RequestQueue.cs (6)
60
if (
_attemptedConnectionsOffset
> 0)
166
Debug.Assert(
_attemptedConnectionsOffset
>= 0);
167
Debug.Assert(
_attemptedConnectionsOffset
< _size, $"{
_attemptedConnectionsOffset
} < {_size}");
169
int index = _head +
_attemptedConnectionsOffset
;
182
public int RequestsWithoutAConnectionAttempt => _size -
_attemptedConnectionsOffset
;