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

/external/sqlite/dist/orig/
H A Dsqlite3ext.h422 #define sqlite3_backup_step sqlite3_api->backup_step macro
H A Dsqlite3.h6340 ** <li><b>sqlite3_backup_step()</b> is called one or more times to transfer
6371 ** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and
6375 ** [[sqlite3_backup_step()]] <b>sqlite3_backup_step()</b>
6377 ** ^Function sqlite3_backup_step(B,N) will copy up to N pages between
6380 ** ^If sqlite3_backup_step(B,N) successfully copies N pages and there
6382 ** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages
6384 ** ^If an error occurs while running sqlite3_backup_step(B,N),
6386 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
6390 ** ^(The sqlite3_backup_step() migh
[all...]
H A Dshell.c1588 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK ){}
2071 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK
H A Dsqlite3.c6890 ** <li><b>sqlite3_backup_step()</b> is called one or more times to transfer
6921 ** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and
6925 ** [[sqlite3_backup_step()]] <b>sqlite3_backup_step()</b>
6927 ** ^Function sqlite3_backup_step(B,N) will copy up to N pages between
6930 ** ^If sqlite3_backup_step(B,N) successfully copies N pages and there
6932 ** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages
6934 ** ^If an error occurs while running sqlite3_backup_step(B,N),
6936 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
6940 ** ^(The sqlite3_backup_step() migh
57960 SQLITE_API int sqlite3_backup_step(sqlite3_backup *p, int nPage){ function
91395 #define sqlite3_backup_step macro
[all...]
/external/sqlite/dist/
H A Dsqlite3ext.h422 #define sqlite3_backup_step sqlite3_api->backup_step macro
H A Dsqlite3.h6340 ** <li><b>sqlite3_backup_step()</b> is called one or more times to transfer
6371 ** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and
6375 ** [[sqlite3_backup_step()]] <b>sqlite3_backup_step()</b>
6377 ** ^Function sqlite3_backup_step(B,N) will copy up to N pages between
6380 ** ^If sqlite3_backup_step(B,N) successfully copies N pages and there
6382 ** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages
6384 ** ^If an error occurs while running sqlite3_backup_step(B,N),
6386 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
6390 ** ^(The sqlite3_backup_step() migh
[all...]
H A Dshell.c1607 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK ){}
2090 while( (rc = sqlite3_backup_step(pBackup,100))==SQLITE_OK
H A Dsqlite3.c6890 ** <li><b>sqlite3_backup_step()</b> is called one or more times to transfer
6921 ** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and
6925 ** [[sqlite3_backup_step()]] <b>sqlite3_backup_step()</b>
6927 ** ^Function sqlite3_backup_step(B,N) will copy up to N pages between
6930 ** ^If sqlite3_backup_step(B,N) successfully copies N pages and there
6932 ** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages
6934 ** ^If an error occurs while running sqlite3_backup_step(B,N),
6936 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
6940 ** ^(The sqlite3_backup_step() migh
57971 SQLITE_API int sqlite3_backup_step(sqlite3_backup *p, int nPage){ function
91406 #define sqlite3_backup_step macro
[all...]
/external/webkit/WebKitLibraries/WebCoreSQLite3/
H A Dsqlite3.h5194 ** <li><b>sqlite3_backup_step()</b> is called one or more times to transfer
5220 ** returned. This pointer may be used with the sqlite3_backup_step() and
5224 ** <b>sqlite3_backup_step()</b>
5226 ** Function [sqlite3_backup_step()] is used to copy up to nPage pages between
5228 ** second parameter passed to sqlite3_backup_step(). If nPage is a negative
5234 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
5239 ** read-only access, sqlite3_backup_step() may return [SQLITE_READONLY] if
5243 ** If sqlite3_backup_step() cannot obtain a required file-system lock, then
5248 ** sqlite3_backup_step() can be retried later. If the source
5250 ** is being used to write to the source database when sqlite3_backup_step()
[all...]
/external/javasqlite/src/main/native/
H A Dsqlite_jni.c4767 ret = sqlite3_backup_step(bk->bkup, (int) n);

Completed in 266 milliseconds