Home
last modified time | relevance | path

Searched refs:xStep (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dmain.c1009 p->xStep = 0; in sqlite_create_function()
1018 void (*xStep)(sqlite_func*,int,const char**), /* The step function */ in sqlite_create_aggregate()
1031 p->xStep = xStep; in sqlite_create_aggregate()
H A Dfunc.c714 void (*xStep)(sqlite_func*,int,const char**); in sqliteRegisterBuiltinFunctions() member
751 aAggs[i].nArg, aAggs[i].xStep, aAggs[i].xFinalize, pArg); in sqliteRegisterBuiltinFunctions()
H A Dexpr.c1643 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 Dvdbeaux.c481 assert( p && p->pFunc && p->pFunc->xStep ); in sqlite_aggregate_context()
502 assert( p && p->pFunc && p->pFunc->xStep ); in sqlite_aggregate_count()
H A DsqliteInt.h428 void (*xStep)(sqlite_func*,int,const char**); /* Aggregate function step */ member
H A Dsqlite.h.in460 void (*xStep)(sqlite_func*,int,const char**), /* Called for each row */
528 ** The next routine returns the number of calls to xStep for a particular
529 ** aggregate function instance. The current call to xStep counts so this
H A Dselect.c2367 assert( pAgg->pFunc->xStep!=0 ); in sqliteSelect()
H A Dvdbe.c4466 (ctx.pFunc->xStep)(&ctx, n, (const char**)azArgv); in sqliteVdbeExec()