HomeSort by relevance Sort by last modified time
    Searched defs:casNext (Results 1 - 5 of 5) sorted by null

  /libcore/luni/src/main/java/java/util/concurrent/
SynchronousQueue.java 216 boolean casNext(SNode cmp, SNode val) {
357 s.casNext(m, mn); // help unlink
369 h.casNext(m, mn); // help unlink
474 p.casNext(n, n.next);
518 boolean casNext(QNode cmp, QNode val) {
661 if (!t.casNext(null, s)) // failed to link in
770 if (sn == s || pred.casNext(s, sn))
    [all...]
ConcurrentLinkedQueue.java 154 * only be seen after publication via casNext.
168 boolean casNext(Node<E> cmp, Node<E> val) {
302 if (p.casNext(null, newNode)) {
465 pred.casNext(p, next);
510 if (p.casNext(null, beginningOfTheEnd)) {
693 pred.casNext(p, next);
LinkedTransferQueue.java 425 final boolean casNext(Node cmp, Node val) {
436 * only be seen after publication via casNext.
641 else if (!p.casNext(null, s))
    [all...]
ConcurrentSkipListMap.java 411 boolean casNext(Node<K,V> cmp, Node<K,V> val) {
442 return casNext(f, new Node<K,V>(f));
462 b.casNext(this, f.next);
    [all...]
ConcurrentLinkedDeque.java 272 * only be seen after publication via casNext or casPrev.
286 boolean casNext(Node<E> cmp, Node<E> val) {
374 if (p.casNext(null, newNode)) {
509 if (o != null && p.prev != p && first.casNext(next, p)) {
684 if (next == p || x.casNext(next, p))
    [all...]

Completed in 44 milliseconds