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 215 boolean casNext(SNode cmp, SNode val) {
356 s.casNext(m, mn); // help unlink
368 h.casNext(m, mn); // help unlink
473 p.casNext(n, n.next);
517 boolean casNext(QNode cmp, QNode val) {
660 if (!t.casNext(null, s)) // failed to link in
769 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 426 final boolean casNext(Node cmp, Node val) {
437 * only be seen after publication via casNext.
642 else if (!p.casNext(null, s))
    [all...]
ConcurrentSkipListMap.java 402 boolean casNext(Node<K,V> cmp, Node<K,V> val) {
433 return casNext(f, new Node<K,V>(f));
453 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 243 milliseconds