Lines Matching defs:file2
37855 ** int fd2 = open("./file2", O_RDWR|O_CREAT, 0644);
37857 ** Suppose ./file1 and ./file2 are really the same file (because
100080 SorterFile file2; /* Space for other PMAs */
100166 ** at offset iStartOff of file pTask->file2. And instead of using a
100168 ** threaded IncrMerger the allocate part of pTask->file2 is "refilled" with
100839 if( pTask->file2.pFd ){
100840 sqlite3OsCloseFree(pTask->file2.pFd);
101782 pTask->file2.iEof += pIncr->mxSz;
101797 pIncr->pTask->file2.iEof -= pIncr->mxSz;
101979 ** only requires a region of pTask->file2. */
101991 if( pTask->file2.pFd==0 ){
101992 assert( pTask->file2.iEof>0 );
101993 rc = vdbeSorterOpenTempFile(db, pTask->file2.iEof, &pTask->file2.pFd);
101994 pTask->file2.iEof = 0;
101997 pIncr->aFile[1].pFd = pTask->file2.pFd;
101998 pIncr->iStartOff = pTask->file2.iEof;
101999 pTask->file2.iEof += mxSz;