Searched refs:xBusyHandler (Results 1 – 2 of 2) sorted by relevance
14539 int (*xBusyHandler)(void *,int); /* The busy callback */ member52294 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);[all …]
38207 int (*xBusyHandler)(void*); /* Function to call when busy */40967 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */40970 pPager->xBusyHandler = xBusyHandler;41184 }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) );44186 pPager->xBusyHandler, pPager->pBusyHandlerArg,