Searched refs:PREV (Results 1 – 3 of 3) sorted by relevance
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
D | AbstractQueuedSynchronizer.java | 501 static final long PREV; field in AbstractQueuedSynchronizer.Node 508 PREV = U.objectFieldOffset 590 U.putObject(node, Node.PREV, oldTail); in enq() 613 U.putObject(node, Node.PREV, oldTail); in addWaiter()
|
D | AbstractQueuedLongSynchronizer.java | 123 U.putObject(node, Node.PREV, oldTail); in enq() 146 U.putObject(node, Node.PREV, oldTail); in addWaiter()
|
/libcore/luni/src/main/java/java/util/concurrent/ |
D | ConcurrentLinkedDeque.java | 291 U.putOrderedObject(this, PREV, val); in lazySetPrev() 295 return U.compareAndSwapObject(this, PREV, cmp, val); in casPrev() 301 private static final long PREV; field in ConcurrentLinkedDeque.Node 307 PREV = U.objectFieldOffset
|