Lines Matching defs:xWrite
947 ** to xWrite(). The SQLITE_IOCAP_POWERSAFE_OVERWRITE property means that
1134 ** to xWrite().
1147 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
1426 ** except for calls to the xWrite method and the xFileControl method
24957 return id->pMethods->xWrite(id, pBuf, amt, offset);
35915 kvvfsWriteDb, /* xWrite */
35939 kvvfsWriteJrnl, /* xWrite */
36090 int (*xWrite)(const char *zClass, const char *zKey, const char *zData);
36277 return sqlite3KvvfsMethods.xWrite(pFile->zClass, "sz", zData);
36394 SQLITE_KV_LOG(("xWrite('%s-journal',%d,%lld)\n", pFile->zClass, iAmt, iOfst));
36424 SQLITE_KV_LOG(("xWrite('%s-db',%d,%lld)\n", pFile->zClass, iAmt, iOfst));
36432 if( sqlite3KvvfsMethods.xWrite(pFile->zClass, zKey, aData) ){
36499 i = sqlite3KvvfsMethods.xWrite(pFile->zClass, "jrnl", zOut);
42042 ** continue accessing the database using the xRead() and xWrite()
42113 ** will probably fail too. Fall back to using xRead/xWrite exclusively
42278 unixWrite, /* xWrite */ \
49541 /* Log the error, but continue normal operation using xRead/xWrite */
49559 /* Log the error, but continue normal operation using xRead/xWrite */
49675 winWrite, /* xWrite */
49701 winWrite, /* xWrite */
51437 memdbWrite, /* xWrite */
103295 memjrnlWrite, /* xWrite */
211950 p->rc = pDb->pMethods->xWrite(pDb, p->aBuf, p->pgsz, iOff);
213283 ** all xWrite() calls on the target database file perform no IO.
213538 rc = p->pReal->pMethods->xWrite(p->pReal, zBuf, iAmt, iOfst);
213844 rbuVfsWrite, /* xWrite */