Home | History | Annotate | Download | only in dist

Lines Matching full:busyhandler

8030 ** The sqlite.busyHandler member of the sqlite struct contains the busy
8032 ** handle is passed a pointer to sqlite.busyHandler. The busy-handler
8035 typedef struct BusyHandler BusyHandler;
8036 struct BusyHandler {
8170 ** "BusyHandler" typedefs. vdbe.h also requires a few of the opaque
9793 BusyHandler busyHandler; /* Busy callback */
11933 SQLITE_PRIVATE int sqlite3InvokeBusyHandler(BusyHandler*);
51067 return sqlite3InvokeBusyHandler(&pBt->db->busyHandler);
65459 db->busyHandler.nBusy = 0;
113464 SQLITE_PRIVATE int sqlite3InvokeBusyHandler(BusyHandler *p){
113486 db->busyHandler.xFunc = xBusy;
113487 db->busyHandler.pArg = pArg;
113488 db->busyHandler.nBusy = 0;