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.java299 private transient ThreadLocalHoldCounter readHolds; field in ReentrantReadWriteLock.Sync
339 readHolds = new ThreadLocalHoldCounter(); in Sync()
427 rh = readHolds.get(); in tryReleaseShared()
430 readHolds.remove(); in tryReleaseShared()
487 cachedHoldCounter = rh = readHolds.get(); in tryAcquireShared()
489 readHolds.set(rh); in tryAcquireShared()
525 rh = readHolds.get(); in fullTryAcquireShared()
527 readHolds.remove(); in fullTryAcquireShared()
547 rh = readHolds.get(); in fullTryAcquireShared()
549 readHolds.set(rh); in fullTryAcquireShared()
[all …]