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)
927
get { return
_totalCount
> 0; }
932
get { return
_totalCount
> _pendingCount; }
937
get { return
_totalCount
; }
942
if (_pendingCount ==
_totalCount
)
951
Fx.AssertAndThrow(
_totalCount
!= _pendingCount, "ItemQueue does not contain any available items");
974
Fx.AssertAndThrow(
_totalCount
!= 0, "ItemQueue does not contain any items");
984
if (
_totalCount
== _items.Length)
987
for (int i = 0; i <
_totalCount
; i++)
994
int tail = (_head +
_totalCount
) % _items.Length;