Home
last modified time | relevance | path

Searched refs:eLock (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/sqlite3/
H A Dsqlite3.c53283 if( rc==SQLITE_OK ) pThis->eLock = eLock;
53309 pThis->eLock = eLock;
58249 assert( pPager->eLock>=eLock );
58252 pPager->eLock = (u8)eLock;
58273 assert( eLock==SHARED_LOCK || eLock==RESERVED_LOCK || eLock==EXCLUSIVE_LOCK );
58274 if( pPager->eLock<eLock || pPager->eLock==UNKNOWN_LOCK ){
58277 pPager->eLock = (u8)eLock;
59310 u8 eLock = pPager->eLock;
59316 pPager->eLock = eLock;
70993 if( eLock>pLock->eLock ){
[all …]
H A Dshell.c9027 static int apndLock(sqlite3_file *pFile, int eLock){ in apndLock() argument
9029 return pFile->pMethods->xLock(pFile, eLock); in apndLock()
9035 static int apndUnlock(sqlite3_file *pFile, int eLock){ in apndUnlock() argument
9037 return pFile->pMethods->xUnlock(pFile, eLock); in apndUnlock()
18927 static int recoverVfsLock(sqlite3_file *pFd, int eLock){ in recoverVfsLock() argument
18929 pFd->pMethods->xLock(pFd, eLock) in recoverVfsLock()
18932 static int recoverVfsUnlock(sqlite3_file *pFd, int eLock){ in recoverVfsUnlock() argument
18934 pFd->pMethods->xUnlock(pFd, eLock) in recoverVfsUnlock()