Lines Matching refs:xStep

5794   void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5804 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5814 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5824 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
18142 #define WAGGREGATE(zName, nArg, arg, nc, xStep, xFinal, xValue, xInverse, f) \ argument
18144 SQLITE_INT_TO_PTR(arg), 0, xStep,xFinal,xValue,xInverse,#zName, {0}}
136517 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
136521 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
136651 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
136748 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
181660 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
181673 || ((xFinal==0)!=(xStep==0)) /* Both or neither of xFinal and xStep */
181709 pUserData, xSFunc, xStep, xFinal, xValue, xInverse, pDestructor);
181713 pUserData, xSFunc, xStep, xFinal, xValue, xInverse, pDestructor);
181771 p->xSFunc = xSFunc ? xSFunc : xStep;
181794 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
181821 xSFunc, xStep, xFinal, xValue, xInverse, pArg
181824 assert( rc!=SQLITE_OK || (xStep==0 && xFinal==0) );
181845 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
181848 return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep,
181858 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
181862 return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep,
181871 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
181877 return createFunctionApi(db, zFunc, nArg, enc, p, 0, xStep,
181889 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
181901 rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xSFunc,xStep,xFinal,0,0,0);
216413 void (*xStep)(sqlite3_context*,int,sqlite3_value**);
216434 0, aAgg[i].xStep, aAgg[i].xFinal);