Home
last modified time | relevance | path

Searched refs:xLock (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/sqlite3/
H A Dsqlite3.h830 int (*xLock)(sqlite3_file*, int); member
H A Dsqlite3.c1136 int (*xLock)(sqlite3_file*, int); member
24024 return id->pMethods->xLock(id, lockType);
39279 assert( fd->pMethods->xLock==nolockLock
41509 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
41560 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK);
41563 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType);
42140 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock);
204935 rc = fd->pMethods->xLock(fd, SQLITE_LOCK_SHARED);
204937 rc = fd->pMethods->xLock(fd, SQLITE_LOCK_EXCLUSIVE);
206560 rc = p->pReal->pMethods->xLock(p->pReal, eLock);
H A Dshell.c4017 return pFile->pMethods->xLock(pFile, eLock); in apndLock()