Home
last modified time | relevance | path

Searched refs:xBusyHandler (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/test/
H A Dwal5.test442 proc xBusyHandler {n} { sql2 { COMMIT } ; return 0 }
443 db busy xBusyHandler
460 proc xBusyHandler {n} { return 1 }
466 proc xBusyHandler {n} { sql2 { COMMIT } ; return 0 }
467 db busy xBusyHandler
/sqlite-3.40.0/src/
H A Dpager.c689 int (*xBusyHandler)(void*); /* Function to call when busy */ member
3661 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */ in sqlite3PagerSetBusyHandler()
3665 pPager->xBusyHandler = xBusyHandler; in sqlite3PagerSetBusyHandler()
3667 ap = (void **)&pPager->xBusyHandler; in sqlite3PagerSetBusyHandler()
3668 assert( ((int(*)(void *))(ap[0]))==xBusyHandler ); in sqlite3PagerSetBusyHandler()
3897 }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) ); in pager_wait_on_lock()
7450 (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler), in sqlite3PagerCheckpoint()
H A Dmain.c1711 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0; in sqlite3InvokeBusyHandler()
1712 rc = p->xBusyHandler(p->pBusyArg, p->nBusy); in sqlite3InvokeBusyHandler()
1734 db->busyHandler.xBusyHandler = xBusy; in sqlite3_busy_handler()
H A DsqliteInt.h1065 int (*xBusyHandler)(void *,int); /* The busy callback */ member