Home
last modified time | relevance | path

Searched defs:tryLock (Results 1 – 8 of 8) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/locks/
DLock.java234 boolean tryLock(); in tryLock() method
294 boolean tryLock(long time, TimeUnit unit) throws InterruptedException; in tryLock() method
DReentrantLock.java341 public boolean tryLock() { in tryLock() method in ReentrantLock
417 public boolean tryLock(long timeout, TimeUnit unit) in tryLock() method in ReentrantLock
DReentrantReadWriteLock.java771 public boolean tryLock() { in tryLock() method in ReentrantReadWriteLock.ReadLock
842 public boolean tryLock(long timeout, TimeUnit unit) in tryLock() method in ReentrantReadWriteLock.ReadLock
1008 public boolean tryLock() { in tryLock() method in ReentrantReadWriteLock.WriteLock
1091 public boolean tryLock(long timeout, TimeUnit unit) in tryLock() method in ReentrantReadWriteLock.WriteLock
DStampedLock.java855 public boolean tryLock() { return tryReadLock() != 0L; } in tryLock() method in StampedLock.ReadLockView
856 public boolean tryLock(long time, TimeUnit unit) in tryLock() method in StampedLock.ReadLockView
871 public boolean tryLock() { return tryWriteLock() != 0L; } in tryLock() method in StampedLock.WriteLockView
872 public boolean tryLock(long time, TimeUnit unit) in tryLock() method in StampedLock.WriteLockView
/libcore/ojluni/src/main/java/java/nio/channels/
DFileChannel.java944 public abstract FileLock tryLock(long position, long size, boolean shared) in tryLock() method in FileChannel
976 public final FileLock tryLock() throws IOException { in tryLock() method in FileChannel
/libcore/ojluni/src/main/java/sun/nio/ch/
DFileChannelImpl.java1051 public FileLock tryLock(long position, long size, boolean shared) in tryLock() method in FileChannelImpl
/libcore/luni/src/main/java/java/util/concurrent/
DThreadPoolExecutor.java634 public boolean tryLock() { return tryAcquire(1); } in tryLock() method in ThreadPoolExecutor.Worker
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DFileChannelTest.java3186 public FileLock tryLock(long position, long size, boolean shared) in tryLock() method in FileChannelTest.MockFileChannel