OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:prednext
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java
291
//
predNext
is the apparent node to unsplice. CASes below will
294
Node
predNext
= pred.next;
303
pred.compareAndSetNext(
predNext
, null);
314
pred.compareAndSetNext(
predNext
, next);
[
all
...]
AbstractQueuedSynchronizer.java
758
//
predNext
is the apparent node to unsplice. CASes below will
761
Node
predNext
= pred.next;
770
pred.compareAndSetNext(
predNext
, null);
781
pred.compareAndSetNext(
predNext
, next);
[
all
...]
Completed in 1102 milliseconds