/libcore/ojluni/src/main/java/java/util/concurrent/locks/ |
D | Lock.java | 263 boolean tryLock(); in tryLock() method 323 boolean tryLock(long time, TimeUnit unit) throws InterruptedException; in tryLock() method
|
D | ReentrantLock.java | 373 public boolean tryLock() { in tryLock() method in ReentrantLock 449 public boolean tryLock(long timeout, TimeUnit unit) in tryLock() method in ReentrantLock
|
D | ReentrantReadWriteLock.java | 800 public boolean tryLock() { in tryLock() method in ReentrantReadWriteLock.ReadLock 871 public boolean tryLock(long timeout, TimeUnit unit) in tryLock() method in ReentrantReadWriteLock.ReadLock 1037 public boolean tryLock() { in tryLock() method in ReentrantReadWriteLock.WriteLock 1120 public boolean tryLock(long timeout, TimeUnit unit) in tryLock() method in ReentrantReadWriteLock.WriteLock
|
D | StampedLock.java | 884 public boolean tryLock() { return tryReadLock() != 0L; } in tryLock() method in StampedLock.ReadLockView 885 public boolean tryLock(long time, TimeUnit unit) in tryLock() method in StampedLock.ReadLockView 900 public boolean tryLock() { return tryWriteLock() != 0L; } in tryLock() method in StampedLock.WriteLockView 901 public boolean tryLock(long time, TimeUnit unit) in tryLock() method in StampedLock.WriteLockView
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
D | AsynchronousFileChannel.java | 606 public abstract FileLock tryLock(long position, long size, boolean shared) in tryLock() method in AsynchronousFileChannel 639 public final FileLock tryLock() throws IOException { in tryLock() method in AsynchronousFileChannel
|
D | FileChannel.java | 1122 public abstract FileLock tryLock(long position, long size, boolean shared) in tryLock() method in FileChannel 1154 public final FileLock tryLock() throws IOException { in tryLock() method in FileChannel
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/locks/ |
D | ReentrantLock.java | 59 public boolean tryLock() { in tryLock() method in ReentrantLock 63 public boolean tryLock(long timeout, java.util.concurrent.TimeUnit unit) in tryLock() method in ReentrantLock
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | SimpleAsynchronousFileChannelImpl.java | 243 public FileLock tryLock(long position, long size, boolean shared) in tryLock() method in SimpleAsynchronousFileChannelImpl
|
D | FileChannelImpl.java | 1164 public FileLock tryLock(long position, long size, boolean shared) in tryLock() method in FileChannelImpl
|
/libcore/ojluni/annotations/hiddenapi/sun/nio/ch/ |
D | FileChannelImpl.java | 199 public java.nio.channels.FileLock tryLock(long position, long size, boolean shared) in tryLock() method in FileChannelImpl
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | ThreadPoolExecutor.java | 480 public boolean tryLock() { in tryLock() method in ThreadPoolExecutor.Worker
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ThreadPoolExecutor.java | 668 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/ |
D | FileChannelTest.java | 3187 public FileLock tryLock(long position, long size, boolean shared) in tryLock() method in FileChannelTest.MockFileChannel
|