Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/
DSynchronousQueue.java234 static final class SNode { class in SynchronousQueue.TransferStack
235 volatile SNode next; // next node in stack
236 volatile SNode match; // the node matched to this
244 SNode(Object item) { in SNode() method in SynchronousQueue.TransferStack.SNode
248 boolean casNext(SNode cmp, SNode val) { in casNext()
261 boolean tryMatch(SNode s) { in tryMatch()
293 (SNode.class.getDeclaredField("match"));
295 (SNode.class.getDeclaredField("next"));
303 volatile SNode head;
305 boolean casHead(SNode h, SNode nh) { in casHead()
[all …]