Searched refs:getExclusiveOwnerThread (Results 1 – 3 of 3) sorted by relevance
112 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()
370 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()
54 protected final Thread getExclusiveOwnerThread() { in getExclusiveOwnerThread() method in AbstractOwnableSynchronizer