13 references to lruList
System (13)
net\System\Net\_PrefixLookup.cs (13)
98
lock (
lruList
)
101
if (
lruList
.First != null &&
lruList
.First.Value.prefix.Equals(prefix))
104
lruList
.First.Value.value = value;
110
lruList
.AddFirst(new PrefixValuePair(prefix, value));
113
while (
lruList
.Count > capacity)
115
lruList
.RemoveLast();
127
if (lookupKey == null || lookupKey.Length == 0 ||
lruList
.Count == 0)
133
lock (
lruList
)
143
for (LinkedListNode<PrefixValuePair> pairNode =
lruList
.First;
163
if (mostSpecificMatch != null && mostSpecificMatch !=
lruList
.First)
166
lruList
.Remove(mostSpecificMatch);
167
lruList
.AddFirst(mostSpecificMatch);