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