Home
last modified time | relevance | path

Searched refs:sqlite3_busy_handler (Results 1 – 4 of 4) sorted by relevance

/freebsd-src/contrib/sqlite3/
H A Dsqlite3ext.h408 #define sqlite3_busy_handler sqlite3_api->busy_handler macro
H A Dsqlite3.h2804 ** ^The sqlite3_busy_handler(D,X,P) routine sets a callback function X
2809 ** The sqlite3_busy_handler() interface is used to implement
2817 ** is the third argument to sqlite3_busy_handler(). ^The second argument to
2858 SQLITE_API int sqlite3_busy_handler(sqlite3*,int(*)(void*,int),void*);
2864 ** ^This routine sets a [sqlite3_busy_handler | busy handler] that sleeps
2876 ** was defined (using [sqlite3_busy_handler()]) prior to calling
9228 ** the [sqlite3_busy_handler | busy-handler function]
9650 ** [sqlite3_busy_handler|busy-handler callback]) until there is no
H A Dsqlite3.c3117 ** ^The sqlite3_busy_handler(D,X,P) routine sets a callback function X
3122 ** The sqlite3_busy_handler() interface is used to implement
3130 ** is the third argument to sqlite3_busy_handler(). ^The second argument to
3171 SQLITE_API int sqlite3_busy_handler(sqlite3*,int(*)(void*,int),void*);
3177 ** ^This routine sets a [sqlite3_busy_handler | busy handler] that sleeps
3189 ** was defined (using [sqlite3_busy_handler()]) prior to calling
9541 ** the [sqlite3_busy_handler | busy-handler function]
9963 ** [sqlite3_busy_handler|busy-handler callback]) until there is no
[all...]
/freebsd-src/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2188 sqlite3_busy_handler(pDb->db, DbBusyHandler, pDb); in DbObjCmd()
2190 sqlite3_busy_handler(pDb->db, 0, 0); in DbObjCmd()