Lines Matching refs:xBusyHandler
14151 int (*xBusyHandler)(void *,int); /* The busy callback */ member
53347 int (*xBusyHandler)(void*); /* Function to call when busy */
56315 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
56319 pPager->xBusyHandler = xBusyHandler;
56321 ap = (void **)&pPager->xBusyHandler;
56322 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
56550 }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) );
60083 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
168299 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
168300 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
168322 db->busyHandler.xBusyHandler = xBusy;