Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/nio/ch/
DFileChannelImpl.java1221 private final List<FileLock> lockList = new ArrayList<FileLock>(2); field in FileChannelImpl.SimpleFileLockTable
1229 assert Thread.holdsLock(lockList); in checkList()
1230 for (FileLock fl: lockList) { in checkList()
1238 synchronized (lockList) { in add()
1240 lockList.add(fl); in add()
1245 synchronized (lockList) { in remove()
1246 lockList.remove(fl); in remove()
1251 synchronized(lockList) { in removeAll()
1252 List<FileLock> result = new ArrayList<FileLock>(lockList); in removeAll()
1253 lockList.clear(); in removeAll()
[all …]
/libcore/ojluni/annotations/hiddenapi/sun/nio/ch/
DFileChannelImpl.java337 private final java.util.List<java.nio.channels.FileLock> lockList; field in FileChannelImpl.SimpleFileLockTable
340 lockList = null;