HomeSort by: relevance | last modified time | path
    Searched refs:xUnlock (Results 1 - 3 of 3) sorted by relevancy

  /src/external/public-domain/sqlite/dist/
sqlite3.h 692 ** argument to calls it makes to the xLock() and xUnlock() methods
697 ** xUnlock is either SHARED or NONE.
699 #define SQLITE_LOCK_NONE 0 /* xUnlock() only */
700 #define SQLITE_LOCK_SHARED 1 /* xLock() or xUnlock() */
773 ** The integer values to xLock() and xUnlock() are one of
786 ** xUnlock() downgrades the database file lock to either SHARED or NONE.
788 ** to xUnlock() is a no-op.
863 int (*xUnlock)(sqlite3_file*, int);
shell.c 11664 apndUnlock, /* xUnlock */
11791 return pFile->pMethods->xUnlock(pFile, eLock);
18705 vfstrace_printf(pInfo, "%s.xUnlock(%s,%s)", pInfo->zVfsName, p->zFName,
18707 rc = p->pReal->pMethods->xUnlock(p->pReal, eLock);
19092 pNew->xUnlock = vfstraceUnlock;
23163 pFd->pMethods->xUnlock(pFd, eLock)
    [all...]
sqlite3.c 1013 ** argument to calls it makes to the xLock() and xUnlock() methods
1018 ** xUnlock is either SHARED or NONE.
1020 #define SQLITE_LOCK_NONE 0 /* xUnlock() only */
1021 #define SQLITE_LOCK_SHARED 1 /* xLock() or xUnlock() */
1094 ** The integer values to xLock() and xUnlock() are one of
1107 ** xUnlock() downgrades the database file lock to either SHARED or NONE.
1109 ** to xUnlock() is a no-op.
1184 int (*xUnlock)(sqlite3_file*, int);
    [all...]

Completed in 133 milliseconds