Searched refs:ForwardingNode (Results 1 – 1 of 1) sorted by relevance
2236 static final class ForwardingNode<K,V> extends Node<K,V> { class in ConcurrentHashMap2238 ForwardingNode(Node<K,V>[] tab) { in ForwardingNode() method in ConcurrentHashMap.ForwardingNode2256 if (e instanceof ForwardingNode) { in find()2257 tab = ((ForwardingNode<K,V>)e).nextTable; in find()2370 if (tab != null && (f instanceof ForwardingNode) && in helpTransfer()2371 (nextTab = ((ForwardingNode<K,V>)f).nextTable) != null) { in helpTransfer()2446 ForwardingNode<K,V> fwd = new ForwardingNode<K,V>(nextTab); in transfer()3374 if (e instanceof ForwardingNode) { in advance()3375 tab = ((ForwardingNode<K,V>)e).nextTable; in advance()4929 if (e instanceof ForwardingNode) { in advance()[all …]