Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/locks/
DReentrantReadWriteLock.java280 final long tid = LockSupport.getThreadId(Thread.currentThread());
426 rh.tid != LockSupport.getThreadId(current)) in tryReleaseShared()
486 rh.tid != LockSupport.getThreadId(current)) in tryAcquireShared()
524 rh.tid != LockSupport.getThreadId(current)) { in fullTryAcquireShared()
546 rh.tid != LockSupport.getThreadId(current)) in fullTryAcquireShared()
605 rh.tid != LockSupport.getThreadId(current)) in tryReadLock()
656 if (rh != null && rh.tid == LockSupport.getThreadId(current)) in getReadHoldCount()
DLockSupport.java419 static final long getThreadId(Thread thread) { in getThreadId() method in LockSupport