HomeSort by: relevance | last modified time | path
    Searched refs:sqlite3_backup_step (Results 1 - 5 of 5) sorted by relevancy

  /src/external/public-domain/sqlite/dist/
sqlite3ext.h 573 #define sqlite3_backup_step sqlite3_api->backup_step macro
sqlite3.h 9572 ** <li><b>sqlite3_backup_step()</b> is called one or more times to transfer
9607 ** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and
9611 ** [[sqlite3_backup_step()]] <b>sqlite3_backup_step()</b>
9613 ** ^Function sqlite3_backup_step(B,N) will copy up to N pages between
9616 ** ^If sqlite3_backup_step(B,N) successfully copies N pages and there
9618 ** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages
9620 ** ^If an error occurs while running sqlite3_backup_step(B,N),
9622 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
9626 ** ^(The sqlite3_backup_step() might return [SQLITE_READONLY] i
    [all...]
shell.c 21638 sqlite3_backup_step(pBackup, -1);
32554 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK ){}
    [all...]
sqlite3.c 9893 ** <li><b>sqlite3_backup_step()</b> is called one or more times to transfer
9928 ** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and
9932 ** [[sqlite3_backup_step()]] <b>sqlite3_backup_step()</b>
9934 ** ^Function sqlite3_backup_step(B,N) will copy up to N pages between
9937 ** ^If sqlite3_backup_step(B,N) successfully copies N pages and there
9939 ** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages
9941 ** ^If an error occurs while running sqlite3_backup_step(B,N),
9943 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
9947 ** ^(The sqlite3_backup_step() might return [SQLITE_READONLY] i
85004 SQLITE_API int sqlite3_backup_step(sqlite3_backup *p, int nPage){ function
142793 #define sqlite3_backup_step macro
    [all...]
  /src/external/public-domain/sqlite/dist/tea/generic/
tclsqlite3.c 2585 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK ){}
3709 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK

Completed in 210 milliseconds