Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_backup

5320 ** The sqlite3_backup object records state information about an ongoing
5321 ** online backup operation. ^The sqlite3_backup object is created by
5327 typedef struct sqlite3_backup sqlite3_backup;
5380 ** [sqlite3_backup] object.
5381 ** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and
5388 ** the source and destination databases specified by [sqlite3_backup] object B.
5442 ** should destroy the [sqlite3_backup] by passing it to sqlite3_backup_finish().
5444 ** resources associated with the [sqlite3_backup] object.
5447 ** The [sqlite3_backup] object is invalid
5454 ** sqlite3_backup_step() call on the same [sqlite3_backup] object, then
5464 ** the [sqlite3_backup] object: the number of pages still to be backed
5499 ** The [sqlite3_backup] object itself is partially threadsafe. Multiple
5506 SQLITE_API sqlite3_backup *sqlite3_backup_init(
5512 SQLITE_API int sqlite3_backup_step(sqlite3_backup *p, int nPage);
5513 SQLITE_API int sqlite3_backup_finish(sqlite3_backup *p);
5514 SQLITE_API int sqlite3_backup_remaining(sqlite3_backup *p);
5515 SQLITE_API int sqlite3_backup_pagecount(sqlite3_backup *p);