Lines Matching refs:sqlite3_busy_handler
3117 ** ^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
136841 #define sqlite3_busy_handler sqlite3_api->busy_handler
137287 sqlite3_busy_handler,
181548 SQLITE_API int sqlite3_busy_handler(
181607 sqlite3_busy_handler(db, (int(*)(void*,int))sqliteDefaultBusyCallback,
181611 sqlite3_busy_handler(db, 0, 0);