• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching defs:xStep

3686 ** The seventh, eighth and ninth parameters, xFunc, xStep and xFinal, are
3689 ** callback only; NULL pointers should be passed as the xStep and xFinal
3690 ** parameters. ^An aggregate SQL function requires an implementation of xStep
3726 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
3736 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
3779 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
3842 ** called once for each invocation of the xStep callback and then one
3844 ** an aggregate query, the xStep() callback of the aggregate function
3863 ** to the xStep or xFinal callback routine that implements the aggregate
8458 void (*xStep)(sqlite3_context*,int,sqlite3_value**); /* Aggregate step */
8486 ** AGGREGATE(zName, nArg, iArg, bNC, xStep, xFinal)
8488 ** the C functions xStep and xFinal. The first four parameters
8508 #define AGGREGATE(zName, nArg, arg, nc, xStep, xFinal) \
8510 SQLITE_INT_TO_PTR(arg), 0, 0, xStep,xFinal,#zName,0}
50739 assert( p && p->pFunc && p->pFunc->xStep );
50830 assert( p && p->pMem && p->pFunc && p->pFunc->xStep );
57333 (u.cb.ctx.pFunc->xStep)(&u.cb.ctx, u.cb.n, u.cb.apVal);
65787 0, /* xStep */
65808 0, /* xStep */
70161 || (nArg==-1 && (p->xFunc!=0 || p->xStep!=0))
70236 ** or xStep is non-zero.
70306 if( pBest && (pBest->xStep || pBest->xFunc || createFlag) ){
75788 int (*create_function)(sqlite3*,const char*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*));
75789 int (*create_function16)(sqlite3*,const void*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*));
96135 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
96143 (xFunc && (xFinal || xStep)) ||
96144 (!xFunc && (xFinal && !xStep)) ||
96145 (!xFunc && (!xFinal && xStep)) ||
96164 pUserData, xFunc, xStep, xFinal);
96167 pUserData, xFunc, xStep, xFinal);
96202 p->xStep = xStep;
96219 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
96224 rc = sqlite3CreateFunc(db, zFunctionName, nArg, enc, p, xFunc, xStep, xFinal);
96238 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
96246 rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xFunc, xStep, xFinal);