Lines Matching defs:File
3 * IPRT - File Locking, OS/2.
52 RTR3DECL(int) RTFileLock(RTFILE File, unsigned fLock, int64_t offLock, uint64_t cbLock)
85 if (fcntl(RTFileToNative(File), (fLock & RTFILE_LOCK_WAIT) ? F_SETLKW : F_SETLK, &fl) >= 0)
97 RTR3DECL(int) RTFileChangeLock(RTFILE File, unsigned fLock, int64_t offLock, uint64_t cbLock)
110 int rc = RTFileLock(File, fLock, offLock, cbLock);
122 rc = RTFileUnlock(File, offLock, cbLock);
127 rc = RTFileLock(File, fLock, offLock, cbLock);
133 rc = RTFileLock(File, fLockOld, offLock, cbLock);
141 RTR3DECL(int) RTFileUnlock(RTFILE File, int64_t offLock, uint64_t cbLock)
165 if (fcntl(RTFileToNative(File), F_SETLK, &fl) >= 0)