Lines Matching refs:eLock
118 int eLock; /* Current lock held on the file */ member
300 && ((pMain->eLock>=SQLITE_LOCK_RESERVED) || noLock) in locateDatabaseHandle()
638 static int jtLock(sqlite3_file *pFile, int eLock){ in jtLock() argument
641 rc = sqlite3OsLock(p->pReal, eLock); in jtLock()
642 if( rc==SQLITE_OK && eLock>p->eLock ){ in jtLock()
643 p->eLock = eLock; in jtLock()
651 static int jtUnlock(sqlite3_file *pFile, int eLock){ in jtUnlock() argument
654 rc = sqlite3OsUnlock(p->pReal, eLock); in jtUnlock()
655 if( rc==SQLITE_OK && eLock<p->eLock ){ in jtUnlock()
656 p->eLock = eLock; in jtUnlock()
712 p->eLock = 0; in jtOpen()