Home | History | Annotate | Download | only in orig

Lines Matching defs: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*);
51039 return sqlite3InvokeBusyHandler(&pBt->db->busyHandler);
65431 db->busyHandler.nBusy = 0;
113428 SQLITE_PRIVATE int sqlite3InvokeBusyHandler(BusyHandler *p){
113450 db->busyHandler.xFunc = xBusy;
113451 db->busyHandler.pArg = pArg;
113452 db->busyHandler.nBusy = 0;