xBusy 36422 third_party/sqlite/amalgamation/sqlite3.c int (*xBusy)(void*), /* Function to call when busy */ xBusy 44849 third_party/sqlite/amalgamation/sqlite3.c int (*xBusy)(void*), /* Function to call when busy */ xBusy 44857 third_party/sqlite/amalgamation/sqlite3.c }while( xBusy && rc==SQLITE_BUSY && xBusy(pBusyArg) ); xBusy 44917 third_party/sqlite/amalgamation/sqlite3.c int (*xBusy)(void*) = 0; /* Function to call when waiting for locks */ xBusy 44932 third_party/sqlite/amalgamation/sqlite3.c if( eMode!=SQLITE_CHECKPOINT_PASSIVE ) xBusy = xBusyCall; xBusy 44945 third_party/sqlite/amalgamation/sqlite3.c rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(i), 1); xBusy 44951 third_party/sqlite/amalgamation/sqlite3.c xBusy = 0; xBusy 44959 third_party/sqlite/amalgamation/sqlite3.c && (rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(0), 1))==SQLITE_OK xBusy 45031 third_party/sqlite/amalgamation/sqlite3.c rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(1), WAL_NREADER-1); xBusy 46015 third_party/sqlite/amalgamation/sqlite3.c int (*xBusy)(void*), /* Function to call when busy */ xBusy 46050 third_party/sqlite/amalgamation/sqlite3.c rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_WRITE_LOCK, 1); xBusy 46069 third_party/sqlite/amalgamation/sqlite3.c rc = walCheckpoint(pWal, eMode2, xBusy, pBusyArg, sync_flags, zBuf); xBusy 108194 third_party/sqlite/amalgamation/sqlite3.c int (*xBusy)(void*,int), xBusy 108198 third_party/sqlite/amalgamation/sqlite3.c db->busyHandler.xFunc = xBusy; xBusy 949 third_party/sqlite/src/src/main.c int (*xBusy)(void*,int), xBusy 953 third_party/sqlite/src/src/main.c db->busyHandler.xFunc = xBusy; xBusy 30 third_party/sqlite/src/src/test_superlock.c int (*xBusy)(void*,int); /* Pointer to busy-handler function */ xBusy 54 third_party/sqlite/src/src/test_superlock.c if( pBusy->xBusy==0 ) return 0; xBusy 55 third_party/sqlite/src/src/test_superlock.c return pBusy->xBusy(pBusy->pBusyArg, pBusy->nBusy++); xBusy 185 third_party/sqlite/src/src/test_superlock.c int (*xBusy)(void*,int), /* Busy handler callback */ xBusy 216 third_party/sqlite/src/src/test_superlock.c busy.xBusy = xBusy; xBusy 313 third_party/sqlite/src/src/test_superlock.c int (*xBusy)(void*,int) = 0; /* Busy handler callback */ xBusy 331 third_party/sqlite/src/src/test_superlock.c xBusy = superlock_busy; xBusy 334 third_party/sqlite/src/src/test_superlock.c rc = sqlite3demo_superlock(zPath, zVfs, xBusy, &busy, &pLock); xBusy 286 third_party/sqlite/src/src/test_thread.c sqlite3_busy_handler(db, xBusy, 0); xBusy 1569 third_party/sqlite/src/src/wal.c int (*xBusy)(void*), /* Function to call when busy */ xBusy 1577 third_party/sqlite/src/src/wal.c }while( xBusy && rc==SQLITE_BUSY && xBusy(pBusyArg) ); xBusy 1637 third_party/sqlite/src/src/wal.c int (*xBusy)(void*) = 0; /* Function to call when waiting for locks */ xBusy 1652 third_party/sqlite/src/src/wal.c if( eMode!=SQLITE_CHECKPOINT_PASSIVE ) xBusy = xBusyCall; xBusy 1665 third_party/sqlite/src/src/wal.c rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(i), 1); xBusy 1671 third_party/sqlite/src/src/wal.c xBusy = 0; xBusy 1679 third_party/sqlite/src/src/wal.c && (rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(0), 1))==SQLITE_OK xBusy 1751 third_party/sqlite/src/src/wal.c rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(1), WAL_NREADER-1); xBusy 2735 third_party/sqlite/src/src/wal.c int (*xBusy)(void*), /* Function to call when busy */ xBusy 2770 third_party/sqlite/src/src/wal.c rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_WRITE_LOCK, 1); xBusy 2789 third_party/sqlite/src/src/wal.c rc = walCheckpoint(pWal, eMode2, xBusy, pBusyArg, sync_flags, zBuf); xBusy 90 third_party/sqlite/src/src/wal.h int (*xBusy)(void*), /* Function to call when busy */