Lines Matching refs:nFrame
6697 ** a negative value as the nFrame parameter disables automatic
12308 int nFrame; /* Number of frames in pFrame list */
56833 p->nFrame = 0;
61238 p->nFrame--;
65427 if( p->nFrame>=db->aLimit[SQLITE_LIMIT_TRIGGER_DEPTH] ){
65479 p->nFrame++;
106092 int nFrame /* Size of WAL */
106094 if( nFrame>=SQLITE_PTR_TO_INT(pClientData) ){
106105 ** a database after committing a transaction if there are nFrame or
106107 ** nFrame parameter disables automatic checkpoints entirely.
106114 SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int nFrame){
106117 UNUSED_PARAMETER(nFrame);
106119 if( nFrame>0 ){
106120 sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame));