20 references to PerfCounterName
System.Runtime.Caching (20)
System\Caching\MemoryCacheStore.cs (10)
69
_perfCounters.Increment(
PerfCounterName
.Entries);
70
_perfCounters.Increment(
PerfCounterName
.Turnover);
98
_perfCounters.Decrement(
PerfCounterName
.Entries);
99
_perfCounters.Increment(
PerfCounterName
.Turnover);
122
_perfCounters.Increment(
PerfCounterName
.Hits);
123
_perfCounters.Increment(
PerfCounterName
.HitRatio);
124
_perfCounters.Increment(
PerfCounterName
.HitRatioBase);
129
_perfCounters.Increment(
PerfCounterName
.Misses);
130
_perfCounters.Increment(
PerfCounterName
.HitRatioBase);
347
_perfCounters.IncrementBy(
PerfCounterName
.Trims, trimmed);
System\Caching\PerfCounters.cs (10)
80
_counters[(int)
PerfCounterName
.Entries] = new PerformanceCounter(PERF_COUNTER_CATEGORY, CACHE_ENTRIES, instanceName, false);
81
_counters[(int)
PerfCounterName
.Hits] = new PerformanceCounter(PERF_COUNTER_CATEGORY, CACHE_HITS, instanceName, false);
82
_counters[(int)
PerfCounterName
.HitRatio] = new PerformanceCounter(PERF_COUNTER_CATEGORY, CACHE_HIT_RATIO, instanceName, false);
83
_counters[(int)
PerfCounterName
.HitRatioBase] = new PerformanceCounter(PERF_COUNTER_CATEGORY, CACHE_HIT_RATIO_BASE, instanceName, false);
84
_counters[(int)
PerfCounterName
.Misses] = new PerformanceCounter(PERF_COUNTER_CATEGORY, CACHE_MISSES, instanceName, false);
85
_counters[(int)
PerfCounterName
.Trims] = new PerformanceCounter(PERF_COUNTER_CATEGORY, CACHE_TRIMS, instanceName, false);
86
_counters[(int)
PerfCounterName
.Turnover] = new PerformanceCounter(PERF_COUNTER_CATEGORY, CACHE_TURNOVER, instanceName, false);
110
internal void Decrement(
PerfCounterName
name) {
117
internal void Increment(
PerfCounterName
name) {
124
internal void IncrementBy(
PerfCounterName
name, long value) {