/external/chromium_org/third_party/sqlite/src/src/ |
os.c | 84 return id->pMethods->xLock(id, lockType);
|
test_multiplex.c | 711 /* Pass xLock requests through to the original VFS unchanged. 718 return pSubOpen->pMethods->xLock(pSubOpen, lock); 942 gMultiplex.sIoMethodsV1.xLock = multiplexLock; [all...] |
test_quota.c | 482 /* Pass xLock requests through to the original VFS unchanged. 486 return pSubOpen->pMethods->xLock(pSubOpen, lock); 598 gQuota.sIoMethodsV1.xLock = quotaLock;
|
test_vfstrace.c | 317 vfstrace_printf(pInfo, "%s.xLock(%s,%s)", pInfo->zVfsName, p->zFName, 319 rc = p->pReal->pMethods->xLock(p->pReal, eLock); 510 pNew->xLock = vfstraceLock;
|
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. 673 int (*xLock)(sqlite3_file*, int); [all...] |
test_osinst.c | 204 vfslogLock, /* xLock */ 353 rc = p->pReal->pMethods->xLock(p->pReal, eLock); 770 case OS_LOCK: zEvent = "xLock"; 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. 678 int (*xLock)(sqlite3_file*, int); [all...] |
sqlite3.c | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/async/ |
sqlite3async.c | 828 rc = pLock->pFile->pMethods->xLock(pLock->pFile, eRequired); [all...] |