Home
last modified time | relevance | path

Searched refs:flock (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/nio/
DFileChannelImpl.java113 StructFlock flock = new StructFlock(); in basicLock() local
114 flock.l_type = (short) (shared ? F_RDLCK : F_WRLCK); in basicLock()
115 flock.l_whence = (short) SEEK_SET; in basicLock()
116 flock.l_start = position; in basicLock()
117 flock.l_len = translateLockLength(size); in basicLock()
121 success = (Libcore.os.fcntlFlock(fd, wait ? F_SETLKW64 : F_SETLK64, flock) != -1); in basicLock()
191 StructFlock flock = new StructFlock(); in release() local
192 flock.l_type = (short) F_UNLCK; in release()
193 flock.l_whence = (short) SEEK_SET; in release()
194 flock.l_start = lock.position(); in release()
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DFileChannelLockingTest.java106 FileLock flock = readWriteChannel.lock(); in test_lockReadWrite() local
107 if (flock != null) { in test_lockReadWrite()
108 flock.release(); in test_lockReadWrite()
/libcore/luni/src/main/native/
DPortability.h34 #define flock64 flock