10 references to BusyCount
System (10)
net\System\Net\_Connection.cs (3)
3853
if (m_Idle && this.
BusyCount
!= 0) {
3869
GlobalLog.Print("Connection#" + ValidationHelper.HashString(this) + "::CheckIdle() m_Idle = " + m_Idle + ", BusyCount = " +
BusyCount
);
3870
if (!m_Idle && this.
BusyCount
== 0) {
net\System\Net\_ConnectionGroup.cs (7)
313
GlobalLog.Print("ConnectionGroup::FindMatchingConnection currentConnection.BusyCount:" + currentConnection.
BusyCount
.ToString());
321
if (!currentConnection.NonKeepAliveRequestPipelined && currentConnection.
BusyCount
< minBusyCount && currentConnection.LockedRequest == null) {
323
minBusyCount = currentConnection.
BusyCount
;
482
GlobalLog.Print("ConnectionGroup::FindConnection currentConnection.BusyCount:" + currentConnection.
BusyCount
.ToString());
493
useThisConnection = (!currentConnection.NonKeepAliveRequestPipelined && minBusyCount > currentConnection.
BusyCount
);
495
useThisConnection = (!currentConnection.NonKeepAliveRequestPipelined || minBusyCount > currentConnection.
BusyCount
);
501
minBusyCount = currentConnection.
BusyCount
;