Home | History | Annotate | Download | only in dist

Lines Matching refs:SRT_Output

10195 #define SRT_Output       5  /* Output each row of result */
88418 sqlite3ExprCodeExprList(pParse, pEList, regResult, eDest==SRT_Output);
88533 case SRT_Output: {
88535 testcase( eDest==SRT_Output );
88725 if( eDest==SRT_Output || eDest==SRT_Coroutine ){
88762 assert( eDest==SRT_Output || eDest==SRT_Coroutine );
88763 testcase( eDest==SRT_Output );
88772 if( eDest==SRT_Output ){
88789 if( eDest==SRT_Output || eDest==SRT_Coroutine ){
89555 if( dest.eDest==SRT_Output ){
89630 if( dest.eDest==SRT_Output ){
89844 ** SRT_Output. This routine is never called with any other
89845 ** destination other than the ones handled above or SRT_Output.
89847 ** For SRT_Output, results are stored in a sequence of registers.
89852 assert( pDest->eDest==SRT_Output );
90289 if( pDest->eDest==SRT_Output ){
91464 ** SRT_Output Generate a row of output (using the OP_ResultRow
92165 if( rc==SQLITE_OK && pDest->eDest==SRT_Output ){
102560 SelectDest dest = {SRT_Output, 0, 0, 0, 0};