Searched defs:xStep (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | main.c | 984 ** Passing a NULL xFunc argument or NULL xStep and xFinalize arguments 1009 p->xStep = 0; 1018 void (*xStep)(sqlite_func*,int,const char**), /* The step function */ 1031 p->xStep = xStep; 1014 sqlite_create_aggregate( sqlite *db, const char *zName, int nArg, void (*xStep)(sqlite_func*,int,const char**), void (*xFinalize)(sqlite_func*), void *pUserData ) argument
|
| H A D | sqliteInt.h | 428 void (*xStep)(sqlite_func*,int,const char**); /* Aggregate function step */ member in struct:FuncDef 433 u8 includeTypes; /* Add datatypes to args of xFunc and xStep */
|
| /PHP_5_3/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 4189 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are 4192 ** callback only; NULL pointers must be passed as the xStep and xFinal 4193 ** parameters. ^An aggregate SQL function requires an implementation of 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**), 4299 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters 4362 ** called once for each invocation of the xStep callback and then one 4364 ** an aggregate query, the xStep() callback of the aggregate function 4383 ** to the xStep o 9593 void (*xStep)(sqlite3_context*,int,sqlite3_value**); /* Aggregate step */ member in struct:FuncDef 108942 sqlite3CreateFunc( sqlite3 *db, const char *zFunctionName, int nArg, int enc, void *pUserData, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), FuncDestructor *pDestructor ) argument 109036 sqlite3_create_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*) ) argument 109050 sqlite3_create_function_v2( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xDestroy)(void *) ) argument 109087 sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *p, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ) argument [all...] |
Completed in 100 milliseconds