Searched refs:LOCKSTATE (Results 1 – 1 of 1) sorted by relevance
/libcore/luni/src/main/java/java/util/concurrent/ |
D | ConcurrentHashMap.java | 2827 if (!U.compareAndSwapInt(this, LOCKSTATE, 0, WRITER)) in lockRoot() 2845 if (U.compareAndSwapInt(this, LOCKSTATE, s, WRITER)) { in contendedLock() 2852 if (U.compareAndSwapInt(this, LOCKSTATE, s, s | WAITER)) { in contendedLock() 2877 else if (U.compareAndSwapInt(this, LOCKSTATE, s, in find() 2885 if (U.getAndAddInt(this, LOCKSTATE, -READER) == in find() 3275 private static final long LOCKSTATE; field in ConcurrentHashMap.TreeBin 3278 LOCKSTATE = U.objectFieldOffset
|