Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/locks/
DReentrantLock.java133 } else if (getExclusiveOwnerThread() == current) { in tryLock()
174 if (getExclusiveOwnerThread() != Thread.currentThread()) in tryRelease()
186 return getExclusiveOwnerThread() == Thread.currentThread(); in isHeldExclusively()
196 return getState() == 0 ? null : getExclusiveOwnerThread(); in getOwner()
228 } else if (getExclusiveOwnerThread() == current) { in initialTryLock()
267 } else if (getExclusiveOwnerThread() == current) { in initialTryLock()
DReentrantReadWriteLock.java399 if (w == 0 || current != getExclusiveOwnerThread()) in tryAcquire()
472 getExclusiveOwnerThread() != current) in tryAcquireShared()
512 if (getExclusiveOwnerThread() != current) in fullTryAcquireShared()
569 if (w == 0 || current != getExclusiveOwnerThread()) in tryWriteLock()
591 getExclusiveOwnerThread() != current) in tryReadLock()
619 return getExclusiveOwnerThread() == Thread.currentThread(); in isHeldExclusively()
632 getExclusiveOwnerThread()); in getOwner()
DAbstractOwnableSynchronizer.java83 protected final Thread getExclusiveOwnerThread() { in getExclusiveOwnerThread() method in AbstractOwnableSynchronizer
/libcore/api/
Dcurrent.txt16832 method protected final Thread getExclusiveOwnerThread();