Lines Matching defs:bDone
100053 ** Before a background thread is launched, variable bDone is set to 0. Then,
100054 ** right before it exits, the thread itself sets bDone to 1. This is used for
100066 ** In both cases, the effects of the main thread seeing (bDone==0) even
100073 int bDone; /* Set if thread is finished but not joined */
100893 int bDone = pTask->bDone;
100896 vdbeSorterBlockDebug(pTask, !bDone, "enter");
100898 vdbeSorterBlockDebug(pTask, !bDone, "exit");
100900 assert( pTask->bDone==1 );
100901 pTask->bDone = 0;
100915 assert( pTask->pThread==0 && pTask->bDone==0 );
101462 assert( pTask->bDone==0 );
101464 pTask->bDone = 1;
101498 if( pTask->bDone ){
101514 assert( pTask->pThread==0 && pTask->bDone==0 );
101700 pIncr->pTask->bDone = 1;
102038 pReader->pIncr->pTask->bDone = 1;
158477 int bDone = 0;
158478 rc = whereRangeSkipScanEst(pParse, pLower, pUpper, pLoop, &bDone);
158479 if( bDone ) return rc;
221122 int bDone = 0;
221158 bDone = 1;
221169 bDone = 1;
221190 bDone = 1;
221202 if( bDone==0 ){
231538 int bDone = 0;
231540 for(i=0; p->rc==SQLITE_OK && bDone==0; i++){
231554 bDone = 1;
233889 int bDone = 0;
233891 for(i=0; p->rc==SQLITE_OK && bDone==0; i++){
233924 bDone = 1;
233932 sqlite3Fts5BufferAppendVarint(&p->rc, &pDlidx->buf, !bDone);