Lines Matching defs:nFrame
7266 ** a negative value as the nFrame parameter disables automatic
13174 int nFrame; /* Number of frames in pFrame list */
61170 p->nFrame = 0;
65711 p->nFrame--;
70094 if( p->nFrame>=db->aLimit[SQLITE_LIMIT_TRIGGER_DEPTH] ){
70149 p->nFrame++;
113853 int nFrame /* Size of WAL */
113855 if( nFrame>=SQLITE_PTR_TO_INT(pClientData) ){
113866 ** a database after committing a transaction if there are nFrame or
113868 ** nFrame parameter disables automatic checkpoints entirely.
113875 SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int nFrame){
113878 UNUSED_PARAMETER(nFrame);
113880 if( nFrame>0 ){
113881 sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame));