Lines Matching refs:xBusyHandler
14539 int (*xBusyHandler)(void *,int); /* The busy callback */ member
52294 int (*xBusyHandler)(void*); /* Function to call when busy */
55253 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
55257 pPager->xBusyHandler = xBusyHandler;
55259 ap = (void **)&pPager->xBusyHandler;
55260 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
55488 }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) );
59016 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
161836 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
161837 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
161859 db->busyHandler.xBusyHandler = xBusy;