Searched refs:ForwardingNode (Results 1 – 1 of 1) sorted by relevance
2231 static final class ForwardingNode<K,V> extends Node<K,V> { class in ConcurrentHashMap2233 ForwardingNode(Node<K,V>[] tab) { in ForwardingNode() method in ConcurrentHashMap.ForwardingNode2251 if (e instanceof ForwardingNode) { in find()2252 tab = ((ForwardingNode<K,V>)e).nextTable; in find()2367 if (tab != null && (f instanceof ForwardingNode) && in helpTransfer()2368 (nextTab = ((ForwardingNode<K,V>)f).nextTable) != null) { in helpTransfer()2443 ForwardingNode<K,V> fwd = new ForwardingNode<K,V>(nextTab); in transfer()3382 if (e instanceof ForwardingNode) { in advance()3383 tab = ((ForwardingNode<K,V>)e).nextTable; in advance()4914 if (e instanceof ForwardingNode) { in advance()[all …]