Home | History | Annotate | Download | only in dist

Lines Matching defs:SRT_Coroutine

11766 **     SRT_Coroutine   Generate a co-routine that returns a new row of
11807 #define SRT_Coroutine 13 /* Generate a single row of result */
95447 sqlite3SelectDestInit(&dest, SRT_Coroutine, regYield);
102135 (eDest==SRT_Output||eDest==SRT_Coroutine)?SQLITE_ECEL_DUP:0);
102308 case SRT_Coroutine: /* Send data to a co-routine */
102310 testcase( eDest==SRT_Coroutine );
102317 }else if( eDest==SRT_Coroutine ){
102612 if( eDest==SRT_Output || eDest==SRT_Coroutine ){
102665 assert( eDest==SRT_Output || eDest==SRT_Coroutine );
102667 testcase( eDest==SRT_Coroutine );
103995 case SRT_Coroutine: {
104281 sqlite3SelectDestInit(&destA, SRT_Coroutine, regAddrA);
104282 sqlite3SelectDestInit(&destB, SRT_Coroutine, regAddrB);
106119 sqlite3SelectDestInit(&dest, SRT_Coroutine, pItem->regReturn);