3 writes to handleCount
System (3)
sys\system\runtime\interopservices\handlecollector.cs (3)
52this.handleCount = 0; 69Interlocked.Increment( ref handleCount); 98Interlocked.Decrement( ref handleCount);
8 references to handleCount
System (8)
sys\system\runtime\interopservices\handlecollector.cs (8)
55public int Count { get {return handleCount;} } 70if( handleCount < 0) { 74if (handleCount > threshold) { 76threshold = handleCount + (handleCount/deltaPercent); 99if (handleCount < 0) { 103int newThreshold = handleCount + handleCount/deltaPercent;