Searched refs:xLock (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/crypto/heimdal/lib/sqlite/ |
| H A D | sqlite3.h | 685 int (*xLock)(sqlite3_file*, int); member
|
| H A D | sqlite3.c | 1238 int (*xLock)(sqlite3_file*, int); member 14418 return id->pMethods->xLock(id, lockType); in sqlite3OsLock() 30525 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType); 30576 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK); 30579 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType); 30702 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, EXCLUSIVE_LOCK); 31151 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock);
|
| /freebsd-12.1/contrib/sqlite3/ |
| H A D | sqlite3.h | 788 int (*xLock)(sqlite3_file*, int); member
|
| H A D | shell.c | 3896 return pFile->pMethods->xLock(pFile, eLock); in apndLock()
|
| H A D | sqlite3.c | 1827 int (*xLock)(sqlite3_file*, int); member 23018 return id->pMethods->xLock(id, lockType); in sqlite3OsLock() 38392 assert( fd->pMethods->xLock==nolockLock 40550 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType); 40601 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK); 40604 rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType); 41181 rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock); 198092 p->rc = pReal->pMethods->xLock(pReal, SQLITE_LOCK_SHARED); 198094 p->rc = pReal->pMethods->xLock(pReal, SQLITE_LOCK_EXCLUSIVE); 199684 rc = p->pReal->pMethods->xLock(p->pReal, eLock);
|