Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dtest_superlock.c31 void *pBusyArg; /* First arg to pass to xBusy */ member
55 return pBusy->xBusy(pBusy->pBusyArg, pBusy->nBusy++); in superlockBusyHandler()
186 void *pBusyArg, /* Context arg for busy handler */ in sqlite3demo_superlock() argument
217 busy.pBusyArg = pBusyArg; in sqlite3demo_superlock()
H A Dwal.c1946 void *pBusyArg, /* Context argument for xBusyHandler */ in walBusyLock() argument
1953 }while( xBusy && rc==SQLITE_BUSY && xBusy(pBusyArg) ); in walBusyLock()
2040 void *pBusyArg, /* Context argument for xBusyHandler */ in walCheckpoint() argument
2075 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(i), 1); in walCheckpoint()
2096 && (rc = walBusyLock(pWal,xBusy,pBusyArg,WAL_READ_LOCK(0),1))==SQLITE_OK in walCheckpoint()
2188 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(1), WAL_NREADER-1); in walCheckpoint()
3847 void *pBusyArg, /* Context argument for xBusyHandler */ in sqlite3WalCheckpoint() argument
3898 rc = walBusyLock(pWal, xBusy2, pBusyArg, WAL_WRITE_LOCK, 1); in sqlite3WalCheckpoint()
3926 rc = walCheckpoint(pWal, db, eMode2, xBusy2, pBusyArg, sync_flags, zBuf); in sqlite3WalCheckpoint()
H A Dwal.h105 void *pBusyArg, /* Context argument for xBusyHandler */
H A Dmain.c1712 rc = p->xBusyHandler(p->pBusyArg, p->nBusy); in sqlite3InvokeBusyHandler()
1735 db->busyHandler.pBusyArg = pArg; in sqlite3_busy_handler()
H A DsqliteInt.h1066 void *pBusyArg; /* First arg to busy callback */ member