Home | History | Annotate | Download | only in dist

Lines Matching full:busyhandler

7275 ** The sqlite.busyHandler member of the sqlite struct contains the busy
7277 ** handle is passed a pointer to sqlite.busyHandler. The busy-handler
7280 typedef struct BusyHandler BusyHandler;
7281 struct BusyHandler {
7410 ** "BusyHandler" typedefs. vdbe.h also requires a few of the opaque
9009 BusyHandler busyHandler; /* Busy callback */
11093 SQLITE_PRIVATE int sqlite3InvokeBusyHandler(BusyHandler*);
47032 return sqlite3InvokeBusyHandler(&pBt->db->busyHandler);
60994 db->busyHandler.nBusy = 0;
105715 SQLITE_PRIVATE int sqlite3InvokeBusyHandler(BusyHandler *p){
105737 db->busyHandler.xFunc = xBusy;
105738 db->busyHandler.pArg = pArg;
105739 db->busyHandler.nBusy = 0;