Lines Matching refs:xStep

4235   void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4245 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4255 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
9593 void (*xStep)(sqlite3_context*,int,sqlite3_value**); /* Aggregate step */ member
9664 #define AGGREGATE(zName, nArg, arg, nc, xStep, xFinal) \ argument
9666 SQLITE_INT_TO_PTR(arg), 0, 0, xStep,xFinal,#zName,0,0}
61364 assert( p && p->pFunc && p->pFunc->xStep );
61455 assert( p && p->pMem && p->pFunc && p->pFunc->xStep );
68083 (u.cb.ctx.pFunc->xStep)(&u.cb.ctx, u.cb.n, u.cb.apVal); /* IMP: R-24505-23230 */
81340 || (nArg==-1 && (p->xFunc!=0 || p->xStep!=0))
81490 if( pBest && (pBest->xStep || pBest->xFunc || createFlag) ){
87108 …,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,…
87109 …,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,…
87229 …,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,…
108949 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
108958 (xFunc && (xFinal || xStep)) ||
108959 (!xFunc && (xFinal && !xStep)) ||
108960 (!xFunc && (!xFinal && xStep)) ||
108979 pUserData, xFunc, xStep, xFinal, pDestructor);
108982 pUserData, xFunc, xStep, xFinal, pDestructor);
109026 p->xStep = xStep;
109043 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
109046 return sqlite3_create_function_v2(db, zFunc, nArg, enc, p, xFunc, xStep,
109057 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
109073 rc = sqlite3CreateFunc(db, zFunc, nArg, enc, p, xFunc, xStep, xFinal, pArg);
109094 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
109102 rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xFunc, xStep, xFinal,0);