| HD | sqlite3.c | 4445 void (*xStep)(sqlite3_context*,int,sqlite3_value**), 4455 void (*xStep)(sqlite3_context*,int,sqlite3_value**), 4465 void (*xStep)(sqlite3_context*,int,sqlite3_value**), 11306 void (*xStep)(sqlite3_context*,int,sqlite3_value**); /* Aggregate step */ member 11394 #define AGGREGATE(zName, nArg, arg, nc, xStep, xFinal) \ argument 11396 SQLITE_INT_TO_PTR(arg), 0, 0, xStep,xFinal,#zName,0,0} 11397 #define AGGREGATE2(zName, nArg, arg, nc, xStep, xFinal, extraFlags) \ argument 11399 SQLITE_INT_TO_PTR(arg), 0, 0, xStep,xFinal,#zName,0,0} 70920 assert( p && p->pFunc && p->pFunc->xStep ); 71011 assert( p && p->pMem && p->pFunc && p->pFunc->xStep ); [all …]
|