Searched refs:fileLock (Results 1 – 1 of 1) sorted by relevance
| /NextBSD/contrib/llvm/tools/lldb/source/Host/posix/ |
| HD | LockFilePosix.cpp | 20 Error fileLock (int fd, int cmd, int lock_type, const uint64_t start, const uint64_t len) in fileLock() function 52 return fileLock (m_fd, F_SETLKW, F_WRLCK, start, len); in DoWriteLock() 58 return fileLock (m_fd, F_SETLK, F_WRLCK, start, len); in DoTryWriteLock() 64 return fileLock (m_fd, F_SETLKW, F_RDLCK, start, len); in DoReadLock() 70 return fileLock (m_fd, F_SETLK, F_RDLCK, start, len); in DoTryReadLock() 76 return fileLock (m_fd, F_SETLK, F_UNLCK, m_start, m_len); in DoUnlock()
|