Lines Matching refs:xStep

5995   void (*xStep)(sqlite3_context*,int,sqlite3_value**),
6005 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
6015 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
6025 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
18545 #define WAGGREGATE(zName, nArg, arg, nc, xStep, xFinal, xValue, xInverse, f) \ argument
18547 SQLITE_INT_TO_PTR(arg), 0, xStep,xFinal,xValue,xInverse,#zName, {0}}
138455 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
138459 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
138589 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
138686 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
184567 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
184580 || ((xFinal==0)!=(xStep==0)) /* Both or neither of xFinal and xStep */
184617 pUserData, xSFunc, xStep, xFinal, xValue, xInverse, pDestructor);
184621 pUserData, xSFunc, xStep, xFinal, xValue, xInverse, pDestructor);
184679 p->xSFunc = xSFunc ? xSFunc : xStep;
184702 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
184729 xSFunc, xStep, xFinal, xValue, xInverse, pArg
184732 assert( rc!=SQLITE_OK || (xStep==0 && xFinal==0) );
184753 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
184756 return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep,
184766 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
184770 return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep,
184779 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
184785 return createFunctionApi(db, zFunc, nArg, enc, p, 0, xStep,
184797 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
184809 rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xSFunc,xStep,xFinal,0,0,0);
219569 void (*xStep)(sqlite3_context*,int,sqlite3_value**);
219590 0, aAgg[i].xStep, aAgg[i].xFinal);