Lines Matching defs:nFrame
7266 ** a negative value as the nFrame parameter disables automatic
13174 int nFrame; /* Number of frames in pFrame list */
61142 p->nFrame = 0;
65683 p->nFrame--;
70066 if( p->nFrame>=db->aLimit[SQLITE_LIMIT_TRIGGER_DEPTH] ){
70121 p->nFrame++;
113817 int nFrame /* Size of WAL */
113819 if( nFrame>=SQLITE_PTR_TO_INT(pClientData) ){
113830 ** a database after committing a transaction if there are nFrame or
113832 ** nFrame parameter disables automatic checkpoints entirely.
113839 SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int nFrame){
113842 UNUSED_PARAMETER(nFrame);
113844 if( nFrame>0 ){
113845 sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame));