Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/util/concurrent/locks/
DReentrantReadWriteLock.java271 private transient ThreadLocalHoldCounter readHolds; field in ReentrantReadWriteLock.Sync
311 readHolds = new ThreadLocalHoldCounter(); in Sync()
396 rh = readHolds.get(); in tryReleaseShared()
399 readHolds.remove(); in tryReleaseShared()
454 cachedHoldCounter = rh = readHolds.get(); in tryAcquireShared()
456 readHolds.set(rh); in tryAcquireShared()
491 rh = readHolds.get(); in fullTryAcquireShared()
493 readHolds.remove(); in fullTryAcquireShared()
512 rh = readHolds.get(); in fullTryAcquireShared()
514 readHolds.set(rh); in fullTryAcquireShared()
[all …]