Searched refs:eLock (Results 1 – 2 of 2) sorted by relevance
48896 if( eLock==pThis->eLock ) return SQLITE_OK;48926 if( rc==SQLITE_OK ) pThis->eLock = eLock;53797 assert( eLock==NO_LOCK || eLock==SHARED_LOCK );53800 assert( pPager->eLock>=eLock );53803 pPager->eLock = (u8)eLock;53824 assert( eLock==SHARED_LOCK || eLock==RESERVED_LOCK || eLock==EXCLUSIVE_LOCK );53825 if( pPager->eLock<eLock || pPager->eLock==UNKNOWN_LOCK ){53828 pPager->eLock = (u8)eLock;65867 assert( eLock==READ_LOCK || eLock==WRITE_LOCK );65981 if( eLock>pLock->eLock ){[all …]
4015 static int apndLock(sqlite3_file *pFile, int eLock){ in apndLock() argument4017 return pFile->pMethods->xLock(pFile, eLock); in apndLock()4023 static int apndUnlock(sqlite3_file *pFile, int eLock){ in apndUnlock() argument4025 return pFile->pMethods->xUnlock(pFile, eLock); in apndUnlock()