Home
last modified time | relevance | path

Searched refs:sqlite3_backup_step (Results 1 – 10 of 10) sorted by relevance

/sqlite-3.40.0/src/
H A Dtest_backup.c91 rc = sqlite3_backup_step(p, nPage); in backupTestCmd()
H A Dbackup.c320 int sqlite3_backup_step(sqlite3_backup *p, int nPage){ in sqlite3_backup_step() function
754 sqlite3_backup_step(&b, 0x7FFFFFFF); in sqlite3BtreeCopyFile()
H A Dtest_sqllog.c327 sqlite3_backup_step(pBak, -1); in sqllogCopydb()
H A Dloadext.c349 sqlite3_backup_step,
H A Dsqlite.h.in8923 ** [[sqlite3_backup_step()]] <b>sqlite3_backup_step()</b>
8928 ** ^If sqlite3_backup_step(B,N) successfully copies N pages and there
8932 ** ^If an error occurs while running sqlite3_backup_step(B,N),
8938 ** ^(The sqlite3_backup_step() might return [SQLITE_READONLY] if
8952 ** sqlite3_backup_step() can be retried later. ^If the source
8967 ** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to
8969 ** lasts for the duration of the sqlite3_backup_step() call.
8994 ** sqlite3_backup_step() completed.
9010 ** sqlite3_backup_step().
9016 ** sqlite3_backup_step().)^
[all …]
H A Dsqlite3ext.h556 #define sqlite3_backup_step sqlite3_api->backup_step macro
H A Dtclsqlite.c2080 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK ){} in DbObjCmd()
3179 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK in DbObjCmd()
H A Dshell.c.in7721 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK ){}
9504 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK
/sqlite-3.40.0/test/
H A Dbackup.test832 # * Passing 0 as an argument to sqlite3_backup_step() means no pages
834 # * Passing a negative value as an argument to sqlite3_backup_step() means
/sqlite-3.40.0/ext/recover/
H A Dsqlite3recover.c938 sqlite3_backup_step(pBackup, -1); in recoverTransferSettings()