Lines Matching defs:nSpill
61363 int nSpill;
61368 nSpill = sqlite3Config.nStmtSpill;
61371 nSpill = jrnlBufferSize(pPager);
61379 pVfs, pPager->zJournal, pPager->jfd, flags, nSpill
103044 int nSpill; /* Bytes of data before flushing */
103171 if( p->nSpill>0 && (iAmt+iOfst)>p->nSpill ){
103317 ** nSpill. If nSpill is 0, then the journal file is always create and
103318 ** accessed using the underlying VFS. If nSpill is less than zero, then
103319 ** all content is always stored in main-memory. Finally, if nSpill is a
103322 ** flushed to disk either when it grows larger than nSpill bytes in size,
103330 int nSpill /* Bytes buffered before opening the file */
103334 assert( zName || nSpill<0 || (flags & SQLITE_OPEN_EXCLUSIVE) );
103336 /* Zero the file-handle object. If nSpill was passed zero, initialize
103341 if( nSpill==0 ){
103345 if( nSpill>0 ){
103346 p->nChunkSize = nSpill;
103353 p->nSpill = nSpill;
103372 ** nSpill parameter or as SQLITE_OPEN_MAIN_JOURNAL), and the underlying
103380 p->nSpill>0
103385 NEVER(p->nSpill>0)