OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:casHead
(Results
1 - 4
of
4
) sorted by null
/libcore/luni/src/main/java/java/util/concurrent/
SynchronousQueue.java
264
boolean
casHead
(SNode h, SNode nh) {
316
casHead
(h, h.next); // pop cancelled node
319
} else if (
casHead
(h, s = snode(s, e, h, mode))) {
326
casHead
(h, s.next); // help s's fulfiller
331
casHead
(h, h.next); // pop and retry
332
else if (
casHead
(h, s=snode(s, e, h, FULFILLING|mode))) {
336
casHead
(s, null); // pop fulfill node
342
casHead
(s, mn); // pop both s and m
351
casHead
(h, null); // pop fulfilling node
355
casHead
(h, mn); // pop both h and
[
all
...]
ConcurrentLinkedQueue.java
258
if (h != p &&
casHead
(h, p))
776
private boolean
casHead
(Node<E> cmp, Node<E> val) {
ConcurrentLinkedDeque.java
335
casHead
(h, newNode); // Failure is OK.
574
if (
casHead
(h, p))
718
||
casHead
(h, p))
[
all
...]
ConcurrentSkipListMap.java
351
private boolean
casHead
(HeadIndex<K,V> cmp, HeadIndex<K,V> val) {
[
all
...]
Completed in 454 milliseconds