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.java2236 static final class ForwardingNode<K,V> extends Node<K,V> { class in ConcurrentHashMap
2238 ForwardingNode(Node<K,V>[] tab) { in ForwardingNode() method in ConcurrentHashMap.ForwardingNode
2256 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 …]