Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/util/concurrent/locks/
DLock.java205 void lockInterruptibly() throws InterruptedException; in lockInterruptibly() method
DReentrantLock.java311 public void lockInterruptibly() throws InterruptedException { in lockInterruptibly() method in ReentrantLock
DReentrantReadWriteLock.java744 public void lockInterruptibly() throws InterruptedException { in lockInterruptibly() method in ReentrantReadWriteLock.ReadLock
975 public void lockInterruptibly() throws InterruptedException { in lockInterruptibly() method in ReentrantReadWriteLock.WriteLock
DStampedLock.java852 public void lockInterruptibly() throws InterruptedException { in lockInterruptibly() method in StampedLock.ReadLockView
868 public void lockInterruptibly() throws InterruptedException { in lockInterruptibly() method in StampedLock.WriteLockView
/libcore/luni/src/main/java/java/util/concurrent/
DDelayQueue.java182 lock.lockInterruptibly(); in take()
227 lock.lockInterruptibly(); in poll()
DLinkedBlockingQueue.java310 putLock.lockInterruptibly(); in put()
351 putLock.lockInterruptibly(); in offer()
410 takeLock.lockInterruptibly(); in take()
433 takeLock.lockInterruptibly(); in poll()
DArrayBlockingQueue.java305 lock.lockInterruptibly(); in put()
329 lock.lockInterruptibly(); in offer()
355 lock.lockInterruptibly(); in take()
368 lock.lockInterruptibly(); in poll()
DLinkedBlockingDeque.java383 lock.lockInterruptibly(); in offerFirst()
406 lock.lockInterruptibly(); in offerLast()
487 lock.lockInterruptibly(); in pollFirst()
505 lock.lockInterruptibly(); in pollLast()
DPriorityBlockingQueue.java515 lock.lockInterruptibly(); in take()
529 lock.lockInterruptibly(); in poll()
DScheduledThreadPoolExecutor.java1086 lock.lockInterruptibly(); in take()
1122 lock.lockInterruptibly(); in poll()
/libcore/jsr166-tests/src/test/java/jsr166/
DReentrantReadWriteLockTest.java44 lock.writeLock().lockInterruptibly(); in realRun()
56 lock.writeLock().lockInterruptibly(); in realRun()
321 lock.writeLock().lockInterruptibly(); in testWriteLockInterruptibly_Interruptible()
361 lock.readLock().lockInterruptibly(); in testReadLockInterruptibly_Interruptible()
839 lock.writeLock().lockInterruptibly(); in testWriteLockInterruptibly()
843 lock.writeLock().lockInterruptibly(); in testWriteLockInterruptibly()
862 lock.readLock().lockInterruptibly(); in testReadLockInterruptibly()
864 lock.writeLock().lockInterruptibly(); in testReadLockInterruptibly()
868 lock.readLock().lockInterruptibly(); in testReadLockInterruptibly()
DReentrantLockTest.java43 lock.lockInterruptibly(); in realRun()
55 lock.lockInterruptibly(); in realRun()
480 lock.lockInterruptibly(); in testLockInterruptibly()