Home | History | Annotate | Download | only in orig

Lines Matching defs:nFrame

7256 ** a negative value as the nFrame parameter disables automatic
14225 int nFrame; /* Number of frames in pFrame list */
64008 p->nFrame = 0;
68886 p->nFrame--;
73409 if( p->nFrame>=db->aLimit[SQLITE_LIMIT_TRIGGER_DEPTH] ){
73464 p->nFrame++;
123827 int nFrame /* Size of WAL */
123829 if( nFrame>=SQLITE_PTR_TO_INT(pClientData) ){
123840 ** a database after committing a transaction if there are nFrame or
123842 ** nFrame parameter disables automatic checkpoints entirely.
123849 SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int nFrame){
123852 UNUSED_PARAMETER(nFrame);
123854 if( nFrame>0 ){
123855 sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame));