2 writes to active
System.ServiceModel (2)
System\ServiceModel\Channels\PeerFlooder.cs (2)
688
this.
active
= 0;
803
active
= (active + 1) % (buckets);
9 references to active
System.ServiceModel (9)
System\ServiceModel\Channels\PeerFlooder.cs (9)
713
tables[
active
].Add(key, false);
761
if (tables[(
active
+ i) % buckets].TryGetValue(key, out flooded))
765
tables[(
active
+ i) % buckets][key] = true;
772
tables[
active
].Add(key, true);
786
if (tables[(
active
+ i) % buckets].ContainsKey(key))
791
cache = (int)((
active
+ buckets - i) % buckets);
803
active = (
active
+ 1) % (buckets);
804
tables[
active
] = NewCache(tables[
active
].Count);