Home
last modified time | relevance | path

Searched refs:ForwardingNode (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java2231 static final class ForwardingNode<K,V> extends Node<K,V> { class in ConcurrentHashMap
2233 ForwardingNode(Node<K,V>[] tab) { in ForwardingNode() method in ConcurrentHashMap.ForwardingNode
2251 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 …]