Lines Matching defs:xUnlock

982 ** argument to calls it makes to the xLock() and xUnlock() methods
987 ** xUnlock is either SHARED or NONE.
989 #define SQLITE_LOCK_NONE 0 /* xUnlock() only */
990 #define SQLITE_LOCK_SHARED 1 /* xLock() or xUnlock() */
1063 ** The integer values to xLock() and xUnlock() are one of
1076 ** xUnlock() downgrades the database file lock to either SHARED or NONE.
1078 ** to xUnlock() is a no-op.
1152 int (*xUnlock)(sqlite3_file*, int);
24977 return id->pMethods->xUnlock(id, lockType);
35920 kvvfsUnlock, /* xUnlock */
35944 kvvfsUnlock, /* xUnlock */
36547 SQLITE_KV_LOG(("xUnlock(%s,%d)\n", pFile->zClass, eLock));
42283 UNLOCK, /* xUnlock */ \
42313 unixUnlock, /* xUnlock method */
42323 nolockUnlock, /* xUnlock method */
42333 dotlockUnlock, /* xUnlock method */
42345 flockUnlock, /* xUnlock method */
42358 semXUnlock, /* xUnlock method */
42371 afpUnlock, /* xUnlock method */
42397 proxyUnlock, /* xUnlock method */
42411 nfsUnlock, /* xUnlock method */
44433 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK);
44484 conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
44508 rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK);
44861 rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock);
44882 rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK);
49680 winUnlock, /* xUnlock */
49706 winNolockUnlock, /* xUnlock */
51442 memdbUnlock, /* xUnlock */
55847 ** If the VFS xLock() or xUnlock() returns an error other than SQLITE_BUSY
55856 ** This is usually safe. If an xUnlock fails or appears to fail, there may
55863 ** transition, by the same pager or any other). If the call to xUnlock()
55871 ** doesn't know it because of a previous error in xUnlock). If this happens
55876 ** To work around this, if a call to xUnlock() fails when unlocking the
56636 ** or SHARED_LOCK. Regardless of whether or not the call to xUnlock()
103300 0, /* xUnlock */
213624 return p->pReal->pMethods->xUnlock(p->pReal, eLock);
213849 rbuVfsUnlock, /* xUnlock */