Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c16259 int (*xBusyHandler)(void *,int); /* The busy callback */ member
60324 int (*xBusyHandler)(void*); /* Function to call when busy */ member
63406 int (*xBusyHandler)(void *), /* Pointer to busy-handler function */
63410 pPager->xBusyHandler = xBusyHandler;
63412 ap = (void **)&pPager->xBusyHandler;
63413 assert( ((int(*)(void *))(ap[0]))==xBusyHandler );
63642 }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) );
67213 (eMode<=SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler),
189146 if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
189147 rc = p->xBusyHandler(p->pBusyArg, p->nBusy);
[all …]