Lines Matching refs:xBusyHandler
15627 int (*xBusyHandler)(void *,int); /* The busy callback */ member
58747 int (*xBusyHandler)(void*); /* Function to call when busy */ member
61768 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
61772 pPager->xBusyHandler = xBusyHandler;
61774 ap = (void **)&pPager->xBusyHandler;
61775 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
62004 }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) );
65573 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
184401 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
184402 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
184424 db->busyHandler.xBusyHandler = xBusy;