/external/chromium_org/third_party/sqlite/src/src/ |
os.c | 87 return id->pMethods->xUnlock(id, lockType);
|
test_multiplex.c | 723 /* Pass xUnlock requests through to the original VFS unchanged. 730 return pSubOpen->pMethods->xUnlock(pSubOpen, lock); 943 gMultiplex.sIoMethodsV1.xUnlock = multiplexUnlock; [all...] |
test_quota.c | 489 /* Pass xUnlock requests through to the original VFS unchanged. 493 return pSubOpen->pMethods->xUnlock(pSubOpen, lock); 599 gQuota.sIoMethodsV1.xUnlock = quotaUnlock;
|
test_vfstrace.c | 331 vfstrace_printf(pInfo, "%s.xUnlock(%s,%s)", pInfo->zVfsName, p->zFName, 333 rc = p->pReal->pMethods->xUnlock(p->pReal, eLock); 511 pNew->xUnlock = vfstraceUnlock;
|
os_unix.c | [all...] |
sqlite.h.in | 520 ** argument to calls it makes to the xLock() and xUnlock() methods 596 ** The integer values to xLock() and xUnlock() are one of 604 ** xLock() increases the lock. xUnlock() decreases the lock. 674 int (*xUnlock)(sqlite3_file*, int); [all...] |
test_osinst.c | 205 vfslogUnlock, /* xUnlock */ 367 rc = p->pReal->pMethods->xUnlock(p->pReal, eLock); 771 case OS_UNLOCK: zEvent = "xUnlock"; break; [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.h | 525 ** argument to calls it makes to the xLock() and xUnlock() methods 601 ** The integer values to xLock() and xUnlock() are one of 609 ** xLock() increases the lock. xUnlock() decreases the lock. 679 int (*xUnlock)(sqlite3_file*, int); [all...] |
sqlite3.c | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/async/ |
sqlite3async.c | 834 rc = pLock->pFile->pMethods->xUnlock(pLock->pFile, eRequired); [all...] |