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

  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 273 if (h != p && casHead(h, p))
780 private boolean casHead(Node<E> cmp, Node<E> val) {
ConcurrentLinkedDeque.java 346 casHead(h, newNode); // Failure is OK.
585 if (casHead(h, p))
729 || casHead(h, p))
    [all...]
LinkedTransferQueue.java 542 private boolean casHead(Node cmp, Node val) {
591 if (head == h && casHead(h, n == null ? q : n)) {
633 if (casHead(null, s))
    [all...]
SynchronousQueue.java 275 boolean casHead(SNode h, SNode nh) {
328 casHead(h, h.next); // pop cancelled node
331 } else if (casHead(h, s = snode(s, e, h, mode))) {
338 casHead(h, s.next); // help s's fulfiller
343 casHead(h, h.next); // pop and retry
344 else if (casHead(h, s=snode(s, e, h, FULFILLING|mode))) {
348 casHead(s, null); // pop fulfill node
354 casHead(s, mn); // pop both s and m
363 casHead(h, null); // pop fulfilling node
367 casHead(h, mn); // pop both h and
    [all...]
ConcurrentSkipListMap.java 361 private boolean casHead(HeadIndex<K,V> cmp, HeadIndex<K,V> val) {
    [all...]

Completed in 158 milliseconds