Searched refs:xBusy (Results 1 – 6 of 6) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | test_superlock.c | 30 int (*xBusy)(void*,int); /* Pointer to busy-handler function */ member 54 if( pBusy->xBusy==0 ) return 0; in superlockBusyHandler() 55 return pBusy->xBusy(pBusy->pBusyArg, pBusy->nBusy++); in superlockBusyHandler() 185 int (*xBusy)(void*,int), /* Busy handler callback */ in sqlite3demo_superlock() 216 busy.xBusy = xBusy; in sqlite3demo_superlock() 320 int (*xBusy)(void*,int) = 0; /* Busy handler callback */ in superlock_cmd() local 338 xBusy = superlock_busy; in superlock_cmd() 341 rc = sqlite3demo_superlock(zPath, zVfs, xBusy, &busy, &pLock); in superlock_cmd()
|
| H A D | wal.c | 1945 int (*xBusy)(void*), /* Function to call when busy */ in walBusyLock() 1953 }while( xBusy && rc==SQLITE_BUSY && xBusy(pBusyArg) ); in walBusyLock() 2039 int (*xBusy)(void*), /* Function to call when busy */ in walCheckpoint() 2062 assert( eMode!=SQLITE_CHECKPOINT_PASSIVE || xBusy==0 ); in walCheckpoint() 2075 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(i), 1); in walCheckpoint() 2082 xBusy = 0; 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() 3846 int (*xBusy)(void*), /* Function to call when busy */ in sqlite3WalCheckpoint() 3857 int (*xBusy2)(void*) = xBusy; /* Busy handler for eMode2 */ in sqlite3WalCheckpoint() [all …]
|
| H A D | test_thread.c | 259 static int xBusy(void *pArg, int nBusy){ in xBusy() function 291 sqlite3_busy_handler(db, xBusy, 0); in sqlthread_open()
|
| H A D | wal.h | 104 int (*xBusy)(void*), /* Function to call when busy */
|
| H A D | main.c | 1727 int (*xBusy)(void*,int), in sqlite3_busy_handler() 1734 db->busyHandler.xBusyHandler = xBusy; in sqlite3_busy_handler()
|
| /sqlite-3.40.0/test/ |
| H A D | snapshot_up.test | 144 proc xBusy {args} { return 1 } 145 db3 busy xBusy 170 proc xBusy {args} { 174 db3 busy xBusy
|