Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/util/concurrent/locks/
DReentrantLock.java112 else if (current == getExclusiveOwnerThread()) { in nonfairTryAcquire()
125 if (Thread.currentThread() != getExclusiveOwnerThread()) in tryRelease()
139 return getExclusiveOwnerThread() == Thread.currentThread(); in isHeldExclusively()
149 return getState() == 0 ? null : getExclusiveOwnerThread(); in getOwner()
218 else if (current == getExclusiveOwnerThread()) { in tryAcquire()
DReentrantReadWriteLock.java370 if (w == 0 || current != getExclusiveOwnerThread()) in tryAcquire()
440 getExclusiveOwnerThread() != current) in tryAcquireShared()
479 if (getExclusiveOwnerThread() != current) in fullTryAcquireShared()
533 if (w == 0 || current != getExclusiveOwnerThread()) in tryWriteLock()
554 getExclusiveOwnerThread() != current) in tryReadLock()
581 return getExclusiveOwnerThread() == Thread.currentThread(); in isHeldExclusively()
594 getExclusiveOwnerThread()); in getOwner()
DAbstractOwnableSynchronizer.java54 protected final Thread getExclusiveOwnerThread() { in getExclusiveOwnerThread() method in AbstractOwnableSynchronizer