Home | History | Annotate | Download | only in dist

Lines Matching refs:nFrame

7266 ** a negative value as the nFrame parameter disables automatic
13174 int nFrame; /* Number of frames in pFrame list */
61153 p->nFrame = 0;
65694 p->nFrame--;
70077 if( p->nFrame>=db->aLimit[SQLITE_LIMIT_TRIGGER_DEPTH] ){
70132 p->nFrame++;
113828 int nFrame /* Size of WAL */
113830 if( nFrame>=SQLITE_PTR_TO_INT(pClientData) ){
113841 ** a database after committing a transaction if there are nFrame or
113843 ** nFrame parameter disables automatic checkpoints entirely.
113850 SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int nFrame){
113853 UNUSED_PARAMETER(nFrame);
113855 if( nFrame>0 ){
113856 sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame));