Lines Matching refs:ofst
3796 int ofst, /* Offset to first byte to be locked/unlocked */ argument
3805 pFile->hFile.h, lockType, ofst, nByte));
3809 rc = winUnlockFile(&pFile->hFile.h, ofst, 0, nByte, 0);
3814 rc = winLockFile(&pFile->hFile.h, dwFlags, ofst, 0, nByte, 0);
4073 int ofst, /* First lock to acquire or release */ argument
4088 assert( ofst>=0 && ofst+n<=SQLITE_SHM_NLOCK );
4096 mask = (u16)((1U<<(ofst+n)) - (1U<<ofst));
4097 assert( n>1 || mask==(1<<ofst) );
4111 rc = winShmSystemLock(pShmNode, WINSHM_UNLCK, ofst+WIN_SHM_BASE, n);
4139 rc = winShmSystemLock(pShmNode, WINSHM_RDLCK, ofst+WIN_SHM_BASE, n);
4164 rc = winShmSystemLock(pShmNode, WINSHM_WRLCK, ofst+WIN_SHM_BASE, n);