Searched refs:xBusy (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/third_party/sqlite/src/src/ |
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() 313 int (*xBusy)(void*,int) = 0; /* Busy handler callback */ in superlock_cmd() local 331 xBusy = superlock_busy; in superlock_cmd() 334 rc = sqlite3demo_superlock(zPath, zVfs, xBusy, &busy, &pLock); in superlock_cmd()
|
D | wal.c | 1569 int (*xBusy)(void*), /* Function to call when busy */ in walBusyLock() 1577 }while( xBusy && rc==SQLITE_BUSY && xBusy(pBusyArg) ); in walBusyLock() 1637 int (*xBusy)(void*) = 0; /* Function to call when waiting for locks */ in walCheckpoint() local 1652 if( eMode!=SQLITE_CHECKPOINT_PASSIVE ) xBusy = xBusyCall; in walCheckpoint() 1665 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(i), 1); in walCheckpoint() 1671 xBusy = 0; in walCheckpoint() 1679 && (rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(0), 1))==SQLITE_OK in walCheckpoint() 1751 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(1), WAL_NREADER-1); in walCheckpoint() 2735 int (*xBusy)(void*), /* Function to call when busy */ in sqlite3WalCheckpoint() 2770 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_WRITE_LOCK, 1); in sqlite3WalCheckpoint() [all …]
|
D | wal.h | 90 int (*xBusy)(void*), /* Function to call when busy */
|
D | test_thread.c | 253 static int xBusy(void *pArg, int nBusy){ in xBusy() function 286 sqlite3_busy_handler(db, xBusy, 0); in sqlthread_open()
|
D | main.c | 949 int (*xBusy)(void*,int), in sqlite3_busy_handler() 953 db->busyHandler.xFunc = xBusy; in sqlite3_busy_handler()
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.c | 36422 int (*xBusy)(void*), /* Function to call when busy */ 44849 int (*xBusy)(void*), /* Function to call when busy */ 44857 }while( xBusy && rc==SQLITE_BUSY && xBusy(pBusyArg) ); 44917 int (*xBusy)(void*) = 0; /* Function to call when waiting for locks */ 44932 if( eMode!=SQLITE_CHECKPOINT_PASSIVE ) xBusy = xBusyCall; 44945 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(i), 1); 44951 xBusy = 0; 44959 && (rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(0), 1))==SQLITE_OK 45031 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(1), WAL_NREADER-1); 46015 int (*xBusy)(void*), /* Function to call when busy */ [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 40257 int (*xBusy)(void*), /* Function to call when busy */ 49120 int (*xBusy)(void*), /* Function to call when busy */ 49128 }while( xBusy && rc==SQLITE_BUSY && xBusy(pBusyArg) ); 49188 int (*xBusy)(void*) = 0; /* Function to call when waiting for locks */ 49203 if( eMode!=SQLITE_CHECKPOINT_PASSIVE ) xBusy = xBusyCall; 49216 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(i), 1); 49222 xBusy = 0; 49230 && (rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(0), 1))==SQLITE_OK 49303 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(1), WAL_NREADER-1); 50426 int (*xBusy)(void*), /* Function to call when busy */ [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 40237 int (*xBusy)(void*), /* Function to call when busy */ 49100 int (*xBusy)(void*), /* Function to call when busy */ 49108 }while( xBusy && rc==SQLITE_BUSY && xBusy(pBusyArg) ); 49168 int (*xBusy)(void*) = 0; /* Function to call when waiting for locks */ 49183 if( eMode!=SQLITE_CHECKPOINT_PASSIVE ) xBusy = xBusyCall; 49196 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(i), 1); 49202 xBusy = 0; 49210 && (rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(0), 1))==SQLITE_OK 49283 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(1), WAL_NREADER-1); 50406 int (*xBusy)(void*), /* Function to call when busy */ [all …]
|