Searched refs:xBusy (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_superlock.c30 int (*xBusy)(void*,int); /* Pointer to busy-handler function */ member in struct:SuperlockBusy
31 void *pBusyArg; /* First arg to pass to xBusy */
32 int nBusy; /* Number of times xBusy has been invoked */
54 if( pBusy->xBusy==0 ) return 0;
55 return pBusy->xBusy(pBusy->pBusyArg, pBusy->nBusy++);
176 ** If a required lock cannot be obtained immediately and the xBusy parameter
177 ** to this function is not NULL, then xBusy is invoked in the same way
185 int (*xBusy)(void*,int), /* Busy handler callback */
216 busy.xBusy = xBusy;
182 sqlite3demo_superlock( const char *zPath, const char *zVfs, int (*xBusy)(void*,int), void *pBusyArg, void **ppLock ) argument
[all...]
H A Dwal.h90 int (*xBusy)(void*), /* Function to call when busy */
H A Dwal.c1563 ** n. If the attempt fails and parameter xBusy is not NULL, then it is a
1569 int (*xBusy)(void*), /* Function to call when busy */
1577 }while( xBusy && rc==SQLITE_BUSY && xBusy(pBusyArg) );
1637 int (*xBusy)(void*) = 0; /* Function to call when waiting for locks */
1652 if( eMode!=SQLITE_CHECKPOINT_PASSIVE ) xBusy = xBusyCall;
1665 rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(i), 1);
1671 xBusy = 0;
1679 && (rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(0), 1))==SQLITE_OK
1751 rc = walBusyLock(pWal, xBusy, pBusyAr
1567 walBusyLock( Wal *pWal, int (*xBusy)(void*), void *pBusyArg, int lockIdx, int n ) argument
2732 sqlite3WalCheckpoint( Wal *pWal, int eMode, int (*xBusy)(void*), void *pBusyArg, int sync_flags, int nBuf, u8 *zBuf, int *pnLog, int *pnCkpt ) argument
[all...]
H A Dtest_thread.c253 static int xBusy(void *pArg, int nBusy){ function
286 sqlite3_busy_handler(db, xBusy, 0);
H A Dmain.c949 int (*xBusy)(void*,int),
953 db->busyHandler.xFunc = xBusy;
947 sqlite3_busy_handler( sqlite3 *db, int (*xBusy)(void*,int), void *pArg ) argument
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c44847 walBusyLock( Wal *pWal, int (*xBusy)(void*), void *pBusyArg, int lockIdx, int n ) argument
46012 sqlite3WalCheckpoint( Wal *pWal, int eMode, int (*xBusy)(void*), void *pBusyArg, int sync_flags, int nBuf, u8 *zBuf, int *pnLog, int *pnCkpt ) argument
108192 sqlite3_busy_handler( sqlite3 *db, int (*xBusy)(void*,int), void *pArg ) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c49084 walBusyLock( Wal *pWal, int (*xBusy)(void*), void *pBusyArg, int lockIdx, int n ) argument
50389 sqlite3WalCheckpoint( Wal *pWal, int eMode, int (*xBusy)(void*), void *pBusyArg, int sync_flags, int nBuf, u8 *zBuf, int *pnLog, int *pnCkpt ) argument
123447 sqlite3_busy_handler( sqlite3 *db, int (*xBusy)(void*,int), void *pArg ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c49104 walBusyLock( Wal *pWal, int (*xBusy)(void*), void *pBusyArg, int lockIdx, int n ) argument
50409 sqlite3WalCheckpoint( Wal *pWal, int eMode, int (*xBusy)(void*), void *pBusyArg, int sync_flags, int nBuf, u8 *zBuf, int *pnLog, int *pnCkpt ) argument
123467 sqlite3_busy_handler( sqlite3 *db, int (*xBusy)(void*,int), void *pArg ) argument
[all...]

Completed in 581 milliseconds