Searched refs:xFunc (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3ext.h80 int (*create_function)(sqlite3*,const char*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*));
81 int (*create_function16)(sqlite3*,const void*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*));
201 int (*create_function_v2)(sqlite3*,const char*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*),void(*xDestroy)(void*));
H A Dsqlite3.h1498 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */
3668 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are
3670 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc
3673 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing
3713 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
3723 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
3733 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
3778 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
3962 ** These routines are used by the xFunc or xFinal callbacks that
H A Dsqlite3.c2051 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */
4221 ** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are
4223 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc
4226 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing
4266 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4276 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4286 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
4331 ** The xFunc (for scalar functions) or xStep (for aggregates) parameters
4515 ** These routines are used by the xFunc or xFinal callbacks that
7786 int (*xFunc)(voi member in struct:BusyHandler
9631 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); /* Regular function */ member in struct:FuncDef
62395 columnName( sqlite3_stmt *pStmt, int N, const void *(*xFunc)(Mem*), int useType ) argument
111174 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
111268 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
111282 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
111319 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...]
/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3ext.h83 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
87 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
217 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
H A Dsqlite3.h2046 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */
5120 ** "sqlite3_create_function*" functions, xFunc, xStep and xFinal, are
5122 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc
5125 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing
5174 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
5184 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
5194 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
5643 ** These routines are used by the xFunc or xFinal callbacks that
H A Dshell.c5109 void (*xFunc)(sqlite3_context*,int,sqlite3_value**);
5125 0, aFunc[i].xFunc, 0, 0);
5409 void (*xFunc)(sqlite3_context*,int,sqlite3_value**);
5427 aFunc[i].xFunc, 0, 0);
H A Dsqlite3.c3109 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */
6183 ** "sqlite3_create_function*" functions, xFunc, xStep and xFinal, are
6185 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc
6188 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing
6237 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
6247 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
6257 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
6706 ** These routines are used by the xFunc or xFinal callbacks that
17335 ** FUNCTION(zName, nArg, iArg, bNC, xFunc)
17337 ** implemented by C function xFunc tha
214806 fts5_extension_function xFunc;/* Callback function */ member in struct:Builtin
226613 fts5_extension_function xFunc; /* Callback function */ member in struct:Fts5Auxiliary
229113 fts5CreateAux( fts5_api *pApi, const char *zName, void *pUserData, fts5_extension_function xFunc, void(*xDestroy)(void*) ) argument
[all...]

Completed in 828 milliseconds