| /sqlite-3.40.0/ext/wasm/api/ |
| H A D | sqlite3-api-oo1.js | 935 createFunction: function f(name, xFunc, opt){ 941 xFunc = opt.xFunc || 0; 944 if(!isFunc(xFunc)){ 945 opt = xFunc; 946 xFunc = opt.xFunc || 0; 962 if(isFunc(xFunc)){ 972 xFunc = null; 1005 const xArity = xFunc || xStep; 1020 xFunc, xStep, xFinal, xDestroy);
|
| H A D | sqlite3-api-glue.js | 366 xFunc: {sig:'v(pip)', f:__xFunc}, property 392 xFunc, //void (*xFunc)(sqlite3_context*,int,sqlite3_value**) argument 404 const funcArgs = __xWrapFuncs({xFunc, xStep, xFinal, xDestroy}, field 421 xFunc, xStep, xFinal argument 425 pApp, xFunc, xStep, xFinal, 0)
|
| H A D | sqlite3-wasm.c | 329 void (*xFunc)(void*); member 339 if(s->xFunc) s->xFunc(s); in sqlite3_wasm_test_struct() 790 M(xFunc,"v(p)"); in sqlite3_wasm_enum_json()
|
| H A D | sqlite3-api-prologue.js | 538 xFunc, xStep, xFinal, xDestroy argument 546 xFunc, xStep, xFinal argument
|
| /sqlite-3.40.0/src/ |
| H A D | sqliteInt.h | 1982 #define FUNCTION(zName, nArg, iArg, bNC, xFunc) \ argument 1986 #define VFUNCTION(zName, nArg, iArg, bNC, xFunc) \ argument 1989 #define SFUNCTION(zName, nArg, iArg, bNC, xFunc) \ argument 1992 #define MFUNCTION(zName, nArg, xPtr, xFunc) \ argument 1994 xPtr, 0, xFunc, 0, 0, 0, #zName, {0} } 1995 #define JFUNCTION(zName, nArg, iArg, xFunc) \ argument 2008 #define DFUNCTION(zName, nArg, iArg, bNC, xFunc) \ argument 2010 0, 0, xFunc, 0, 0, 0, #zName, {0} } 2022 pArg, 0, xFunc, 0, 0, 0, #zName, } 2029 #define INTERNAL_FUNCTION(zName, nArg, xFunc) \ argument [all …]
|
| H A D | sqlite3ext.h | 83 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 D | test_func.c | 675 void (*xFunc)(sqlite3_context*,int,sqlite3_value **); in registerTestFunctions() member 704 aFuncs[i].eTextRep, 0, aFuncs[i].xFunc, 0, 0); in registerTestFunctions()
|
| H A D | test1.c | 5365 const char *(*xFunc)(sqlite3_stmt*, int); in test_stmt_utf8() local 5368 xFunc = (const char *(*)(sqlite3_stmt*, int))clientData; in test_stmt_utf8() 5377 zRet = xFunc(pStmt, col); in test_stmt_utf8() 5420 const void *(*xFunc)(sqlite3_stmt*, int); in test_stmt_utf16() local 5422 xFunc = (const void *(*)(sqlite3_stmt*, int))clientData; in test_stmt_utf16() 5432 zName16 = xFunc(pStmt, col); in test_stmt_utf16() 5461 int (*xFunc)(sqlite3_stmt*, int); in test_stmt_int() local 5463 xFunc = (int (*)(sqlite3_stmt*, int))clientData; in test_stmt_int() 5473 Tcl_SetObjResult(interp, Tcl_NewIntObj(xFunc(pStmt, col))); in test_stmt_int()
|
| H A D | sqlite.h.in | 2133 #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */ 5271 ** "sqlite3_create_function*" functions, xFunc, xStep and xFinal, are 5273 ** aggregate. ^A scalar SQL function requires an implementation of the xFunc 5276 ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing 5325 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 5335 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 5345 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), 5806 ** These routines are used by the xFunc or xFinal callbacks that
|
| /sqlite-3.40.0/ext/misc/ |
| H A D | urifuncs.c | 188 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); in sqlite3_urifuncs_init() member 206 aFunc[i].xFunc, 0, 0); in sqlite3_urifuncs_init()
|
| H A D | ieee754.c | 272 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); in sqlite3_ieee_init() member 290 aFunc[i].xFunc, 0, 0); in sqlite3_ieee_init()
|
| H A D | decimal.c | 606 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); in sqlite3_decimal_init() member 622 0, aFunc[i].xFunc, 0, 0); in sqlite3_decimal_init()
|
| /sqlite-3.40.0/ext/lsm1/lsm-test/ |
| H A D | lsmtest8.c | 310 void (*xFunc)(int *); in do_writer_crash_test() member 319 p->xFunc(pRc); in do_writer_crash_test()
|
| H A D | lsmtest6.c | 622 void (*xFunc)(OomTest *); in do_test_oom1() member 646 aSimple[i].xFunc(&t); in do_test_oom1()
|
| H A D | lsmtest_main.c | 1480 int (*xFunc)(int, char **); in main() member 1525 rc = aTest[iFunc].xFunc(argc-2, &argv[2]); in main()
|
| /sqlite-3.40.0/ext/icu/ |
| H A D | icu.c | 509 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); in sqlite3IcuInit() member 534 p->xFunc, 0, 0 in sqlite3IcuInit()
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5_aux.c | 694 fts5_extension_function xFunc;/* Callback function */ in sqlite3Fts5AuxInit() member 708 aBuiltin[i].xFunc, in sqlite3Fts5AuxInit()
|
| H A D | fts5_main.c | 97 fts5_extension_function xFunc; /* Callback function */ member 2346 pAux->xFunc(&sFts5Api, (Fts5Context*)pCsr, context, argc, argv); in fts5ApiInvoke() 2604 fts5_extension_function xFunc, /* Aux. function implementation */ in fts5CreateAux() argument 2623 pAux->xFunc = xFunc; in fts5CreateAux()
|
| /sqlite-3.40.0/ext/wasm/ |
| H A D | demo-123.js | 163 xFunc: function(pCx, arg){ // note the call arg count method
|
| H A D | tester1.js | 1362 xFunc: (pCx,...args)=>{ method 1369 xFunc: (pCx,arg)=>arg 1454 xFunc: ()=>{}, xStep: ()=>{} method 1467 db.createFunction('nope',{xFunc:()=>{}, xDestroy:'nope'}); method 1470 db.createFunction('nope',{xFunc:()=>{}, pApp:'nope'}); method
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | geopoly.c | 1768 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); in sqlite3_geopoly_init() member 1803 aFunc[i].xFunc, 0, 0); in sqlite3_geopoly_init()
|
| /sqlite-3.40.0/ext/recover/ |
| H A D | sqlite3recover.c | 967 void (*xFunc)(sqlite3_context*,int,sqlite3_value **); in recoverOpenOutput() member 996 aFunc[ii].nArg, SQLITE_UTF8, (void*)p, aFunc[ii].xFunc, 0, 0 in recoverOpenOutput()
|
| /sqlite-3.40.0/ext/wasm/jaccwabyt/ |
| H A D | jaccwabyt.md | 933 void (*xFunc)(void*); 995 M(xFunc,"v(p)");
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3.c | 3842 void (*xFunc)(sqlite3_context*,int,sqlite3_value**); in fts3FindFunctionMethod() member 3857 *pxFunc = aOverload[i].xFunc; in fts3FindFunctionMethod()
|