HomeSort by relevance Sort by last modified time
    Searched refs:xSync (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
test8.c 41 ** the database, then all xSync operations on echo virtual tables that
49 ** xColumn xRowid xUpdate xSync
1052 ** xBegin, xSync, xCommit and xRollback callbacks for echo module
1085 ** echo module table, then cause this xSync operation to fail.
1103 /* Ticket #3083 - Only call xSync if we have previously started a
1107 if( simulateVtabError(pVtab, "xSync") ){
1111 rc = echoTransactionCall(tab, "xSync");
1116 ** echo module table, then cause this xSync operation to fail.
    [all...]
os.c 76 return id->pMethods->xSync(id, flags);
sqlite.h.in 532 ** When SQLite invokes the xSync() method of an
546 ** xSync VFS method occur and applies uniformly across all platforms.
590 ** The flags argument to xSync may be one of [SQLITE_SYNC_NORMAL] or
671 int (*xSync)(sqlite3_file*, int flags);
    [all...]
test_multiplex.c 626 /* Pass xSync requests through to the original VFS without change
638 int rc2 = pSubOpen->pMethods->xSync(pSubOpen, flags);
940 gMultiplex.sIoMethodsV1.xSync = multiplexSync;
    [all...]
test_quota.c 451 /* Pass xSync requests through to the original VFS without change
455 return pSubOpen->pMethods->xSync(pSubOpen, flags);
596 gQuota.sIoMethodsV1.xSync = quotaSync;
test_vfstrace.c 275 vfstrace_printf(pInfo, "%s.xSync(%s,%s)", pInfo->zVfsName, p->zFName,
277 rc = p->pReal->pMethods->xSync(p->pReal, flags);
508 pNew->xSync = vfstraceSync;
test_onefile.c 214 fsSync, /* xSync */
235 tmpSync, /* xSync */
517 rc = pRealFile->pMethods->xSync(pRealFile, flags&(~SQLITE_SYNC_DATAONLY));
test_osinst.c 202 vfslogSync, /* xSync */
325 rc = p->pReal->pMethods->xSync(p->pReal, flags);
768 case OS_SYNC: zEvent = "xSync"; break;
1079 0, /* xSync */
    [all...]
vtab.c 752 ** Invoke the xSync method of all virtual tables in the sqlite3.aVTrans
754 ** SQLITE_OK if all xSync operations are successful.
768 if( pVtab && (x = pVtab->pModule->xSync)!=0 ){
799 ** (xBegin/xRollback/xCommit and optionally xSync) and a transaction is
811 ** virtual module xSync() callback. It is illegal to write to
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h 537 ** When SQLite invokes the xSync() method of an
551 ** xSync VFS method occur and applies uniformly across all platforms.
595 ** The flags argument to xSync may be one of [SQLITE_SYNC_NORMAL] or
676 int (*xSync)(sqlite3_file*, int flags);
    [all...]
sqlite3.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c     [all...]

Completed in 74 milliseconds