2 writes to _totalCount
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\InputQueue.cs (2)
977_totalCount--; 996_totalCount++;
9 references to _totalCount
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\InputQueue.cs (9)
927get { return _totalCount > 0; } 932get { return _totalCount > _pendingCount; } 937get { return _totalCount; } 942if (_pendingCount == _totalCount) 951Fx.AssertAndThrow(_totalCount != _pendingCount, "ItemQueue does not contain any available items"); 974Fx.AssertAndThrow(_totalCount != 0, "ItemQueue does not contain any items"); 984if (_totalCount == _items.Length) 987for (int i = 0; i < _totalCount; i++) 994int tail = (_head + _totalCount) % _items.Length;