Searched refs:ForwardingNode (Results 1 – 1 of 1) sorted by relevance
2202 static final class ForwardingNode<K,V> extends Node<K,V> { class in ConcurrentHashMap2204 ForwardingNode(Node<K,V>[] tab) { in ForwardingNode() method in ConcurrentHashMap.ForwardingNode2222 if (e instanceof ForwardingNode) { in find()2223 tab = ((ForwardingNode<K,V>)e).nextTable; in find()2338 if (tab != null && (f instanceof ForwardingNode) && in helpTransfer()2339 (nextTab = ((ForwardingNode<K,V>)f).nextTable) != null) { in helpTransfer()2414 ForwardingNode<K,V> fwd = new ForwardingNode<K,V>(nextTab); in transfer()3353 if (e instanceof ForwardingNode) { in advance()3354 tab = ((ForwardingNode<K,V>)e).nextTable; in advance()4885 if (e instanceof ForwardingNode) { in advance()[all …]