Home
last modified time | relevance | path

Searched refs:sqlite3_interrupt (Results 1 – 5 of 5) sorted by relevance

/freebsd-src/contrib/sqlite3/
H A Dsqlite3ext.h464 #define sqlite3_interrupt sqlite3_api->interruptx macro
H A Dsqlite3.h456 #define SQLITE_INTERRUPT 9 /* Operation terminated by sqlite3_interrupt()*/
2734 ** is closed or might close before sqlite3_interrupt() returns.
2737 ** sqlite3_interrupt() is called, then it might not have an opportunity
2745 ** ^The sqlite3_interrupt(D) call is in effect until all currently running
2747 ** that are started after the sqlite3_interrupt() call and before the
2749 ** running prior to the sqlite3_interrupt() call. ^New SQL statements
2751 ** not effected by the sqlite3_interrupt().
2752 ** ^A call to sqlite3_interrupt(D) that occurs when there are no running
2754 ** that are started after the sqlite3_interrupt() call returns.
2760 SQLITE_API void sqlite3_interrupt(sqlite
[all...]
H A Dshell.c20174 if( globalDb ) sqlite3_interrupt(globalDb); in interrupt_handler()
31007 if( globalDb ) sqlite3_interrupt(globalDb);
H A Dsqlite3.c769 #define SQLITE_INTERRUPT 9 /* Operation terminated by sqlite3_interrupt()*/
3047 ** is closed or might close before sqlite3_interrupt() returns.
3050 ** sqlite3_interrupt() is called, then it might not have an opportunity
3058 ** ^The sqlite3_interrupt(D) call is in effect until all currently running
3060 ** that are started after the sqlite3_interrupt() call and before the
3062 ** running prior to the sqlite3_interrupt() call. ^New SQL statements
3064 ** not effected by the sqlite3_interrupt().
3065 ** ^A call to sqlite3_interrupt(D) that occurs when there are no running
3067 ** that are started after the sqlite3_interrupt() call returns.
3073 SQLITE_API void sqlite3_interrupt(sqlite
[all...]
/freebsd-src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c3014 sqlite3_interrupt(pDb->db); in DbObjCmd()