Searched refs:flock (Results 1 – 3 of 3) sorted by relevance
113 StructFlock flock = new StructFlock(); in basicLock() local114 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() local192 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 …]
106 FileLock flock = readWriteChannel.lock(); in test_lockReadWrite() local107 if (flock != null) { in test_lockReadWrite()108 flock.release(); in test_lockReadWrite()
34 #define flock64 flock