Searched refs:casNext (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DSynchronousQueue.java248 boolean casNext(SNode cmp, SNode val) { method in class:SynchronousQueue.TransferStack.SNode
387 s.casNext(m, mn); // help unlink
399 h.casNext(m, mn); // help unlink
505 p.casNext(n, n.next);
547 boolean casNext(QNode cmp, QNode val) { method in class:SynchronousQueue.TransferQueue.QNode
688 if (!t.casNext(null, s)) // failed to link in
798 if (sn == s || pred.casNext(s, sn))
811 dp.casNext(d, dn))) // d unspliced
H A DConcurrentLinkedQueue.java188 * can only be seen after piggy-backing publication via casNext.
204 static <E> boolean casNext(Node<E> node, Node<E> cmp, Node<E> val) { method in class:ConcurrentLinkedQueue
317 if (casNext(p, null, newNode)) {
491 casNext(pred, p, next);
535 if (casNext(p, null, beginningOfTheEnd)) {
747 casNext(pred, p, q);
H A DLinkedTransferQueue.java458 final boolean casNext(Node cmp, Node val) { method in class:LinkedTransferQueue.Node
469 * only be seen after publication via casNext.
667 else if (!p.casNext(null, s))
956 b.casNext(s, n);
988 p.casNext(s, n);
1147 (n != s && pred.casNext(s, n) && pred.isMatched())) {
1192 p.casNext(s, n);
H A DConcurrentLinkedDeque.java301 * only be seen after publication via casNext or casPrev.
315 boolean casNext(Node<E> cmp, Node<E> val) { method in class:ConcurrentLinkedDeque.Node
399 if (p.casNext(null, newNode)) {
534 if (o != null && p.prev != p && first.casNext(next, p)) {
709 if (next == p || x.casNext(next, p))
1188 if (p.casNext(null, beginningOfTheEnd)) {
H A DConcurrentSkipListMap.java453 boolean casNext(Node<K,V> cmp, Node<K,V> val) { method in class:ConcurrentSkipListMap.Node
484 return casNext(f, new Node<K,V>(f));
502 casNext(f, new Node<K,V>(f));
504 b.casNext(this, f.next);
846 if (!b.casNext(n, z))
979 if (!n.appendMarker(f) || !b.casNext(n, f))
1062 if (!n.appendMarker(f) || !b.casNext(n, f))
1122 if (!n.appendMarker(f) || !b.casNext(n, f))

Completed in 60 milliseconds