Home
last modified time | relevance | path

Searched refs:readHolds (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/locks/
DReentrantReadWriteLock.java300 private transient ThreadLocalHoldCounter readHolds; field in ReentrantReadWriteLock.Sync
340 readHolds = new ThreadLocalHoldCounter(); in Sync()
425 rh = readHolds.get(); in tryReleaseShared()
428 readHolds.remove(); in tryReleaseShared()
483 cachedHoldCounter = rh = readHolds.get(); in tryAcquireShared()
485 readHolds.set(rh); in tryAcquireShared()
520 rh = readHolds.get(); in fullTryAcquireShared()
522 readHolds.remove(); in fullTryAcquireShared()
541 rh = readHolds.get(); in fullTryAcquireShared()
543 readHolds.set(rh); in fullTryAcquireShared()
[all …]