Searched refs:xStep (Results 1 – 8 of 8) sorted by relevance
/titanic_50/usr/src/lib/libsqlite/src/ |
H A D | main.c | 1012 p->xStep = 0; in sqlite_create_function() 1021 void (*xStep)(sqlite_func*,int,const char**), /* The step function */ in sqlite_create_aggregate() 1034 p->xStep = xStep; in sqlite_create_aggregate()
|
H A D | func.c | 717 void (*xStep)(sqlite_func*,int,const char**); in sqliteRegisterBuiltinFunctions() member 754 aAggs[i].nArg, aAggs[i].xStep, aAggs[i].xFinalize, pArg); in sqliteRegisterBuiltinFunctions()
|
H A D | vdbeaux.c | 484 assert( p && p->pFunc && p->pFunc->xStep ); in sqlite_aggregate_context() 505 assert( p && p->pFunc && p->pFunc->xStep ); in sqlite_aggregate_count()
|
H A D | expr.c | 1643 while( p && p->xFunc==0 && p->xStep==0 ){ p = p->pNext; } in sqliteFindFunction() 1648 if( p->nArg<0 && !createFlag && (p->xFunc || p->xStep) ) pMaybe = p; in sqliteFindFunction() 1651 if( p && !createFlag && p->xFunc==0 && p->xStep==0 ){ in sqliteFindFunction()
|
H A D | sqliteInt.h | 431 void (*xStep)(sqlite_func*,int,const char**); /* Aggregate function step */ member
|
H A D | sqlite.h.in | 463 void (*xStep)(sqlite_func*,int,const char**), /* Called for each row */ 531 ** The next routine returns the number of calls to xStep for a particular 532 ** aggregate function instance. The current call to xStep counts so this
|
H A D | select.c | 2371 assert( pAgg->pFunc->xStep!=0 ); in sqliteSelect()
|
H A D | vdbe.c | 4468 (ctx.pFunc->xStep)(&ctx, n, (const char**)azArgv); in sqliteVdbeExec()
|