Searched refs:xValue (Results 1 - 3 of 3) sorted by relevance

/netbsd-current/external/public-domain/sqlite/dist/
H A Dsqlite3ext.h317 void (*xValue)(sqlite3_context*),
H A Dsqlite3.h5416 ** ^The sixth, seventh, eighth and ninth parameters (xStep, xFinal, xValue
5419 ** must both be non-NULL. xValue and xInverse may either both be NULL, in
5494 void (*xValue)(sqlite3_context*),
H A Dsqlite3.c5729 ** ^The sixth, seventh, eighth and ninth parameters (xStep, xFinal, xValue
5732 ** must both be non-NULL. xValue and xInverse may either both be NULL, in
5807 void (*xValue)(sqlite3_context*),
17888 void (*xValue)(sqlite3_context*); /* Current agg value */ member in struct:FuncDef
18029 ** WAGGREGATE(zName, nArg, iArg, xStep, xFinal, xValue, xInverse)
18088 #define WAGGREGATE(zName, nArg, arg, nc, xStep, xFinal, xValue, xInverse, f) \
18090 SQLITE_INT_TO_PTR(arg), 0, xStep,xFinal,xValue,xInverse,#zName, {0}}
180037 sqlite3CreateFunc( sqlite3 *db, const char *zFunctionName, int nArg, int enc, void *pUserData, void (*xSFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInverse)(sqlite3_context*,int,sqlite3_value **), FuncDestructor *pDestructor ) argument
180171 createFunctionApi( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xSFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInverse)(sqlite3_context*,int,sqlite3_value**), void(*xDestroy)(void*) ) argument
180249 sqlite3_create_window_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInverse)(sqlite3_context*,int,sqlite3_value **), void (*xDestroy)(void *) ) argument
[all...]

Completed in 687 milliseconds