Lines Matching defs:file2
39102 ** int fd2 = open("./file2", O_RDWR|O_CREAT, 0644);
39104 ** Suppose ./file1 and ./file2 are really the same file (because
102565 SorterFile file2; /* Space for other PMAs */
102651 ** at offset iStartOff of file pTask->file2. And instead of using a
102653 ** threaded IncrMerger the allocate part of pTask->file2 is "refilled" with
103324 if( pTask->file2.pFd ){
103325 sqlite3OsCloseFree(pTask->file2.pFd);
104267 pTask->file2.iEof += pIncr->mxSz;
104282 pIncr->pTask->file2.iEof -= pIncr->mxSz;
104464 ** only requires a region of pTask->file2. */
104476 if( pTask->file2.pFd==0 ){
104477 assert( pTask->file2.iEof>0 );
104478 rc = vdbeSorterOpenTempFile(db, pTask->file2.iEof, &pTask->file2.pFd);
104479 pTask->file2.iEof = 0;
104482 pIncr->aFile[1].pFd = pTask->file2.pFd;
104483 pIncr->iStartOff = pTask->file2.iEof;
104484 pTask->file2.iEof += mxSz;