Searched refs:sqlite3_create_function_v2 (Results 1 – 11 of 11) sorted by relevance
| /sqlite-3.40.0/test/ |
| H A D | func3.test | 13 # with functions created using sqlite3_create_function_v2() is 24 sqlite3_create_function_v2 db f2 -1 any -func f2 -destroy destroy 28 sqlite3_create_function_v2 db f2 -1 utf8 -func f2 32 sqlite3_create_function_v2 db f2 -1 utf16le -func f2 36 sqlite3_create_function_v2 db f2 -1 utf16be -func f2 44 sqlite3_create_function_v2 db f3 -1 utf8 -func f3 -destroy destroy 48 sqlite3_create_function_v2 db f3 -1 utf8 -func f3 55 sqlite3_create_function_v2 db f3 -1 any -func f3 -destroy destroy 67 sqlite3_create_function_v2 db f3 -1 any -func f3 -step f3 -destroy destroy 206 sqlite3_create_function_v2 db nofunc 1 utf8
|
| /sqlite-3.40.0/ext/wasm/api/ |
| H A D | sqlite3-api-glue.js | 390 capi.sqlite3_create_function_v2 = function f( function in capi 424 ? capi.sqlite3_create_function_v2(pDb, funcName, nArg, eTextRep, 478 capi.sqlite3_create_function_v2.udfSetResult = 500 capi.sqlite3_create_function_v2.udfConvertArgs = 512 capi.sqlite3_create_function_v2.udfSetError =
|
| H A D | sqlite3-api-prologue.js | 536 sqlite3_create_function_v2: function( method
|
| H A D | sqlite3-api-oo1.js | 1017 rc = capi.sqlite3_create_function_v2(
|
| /sqlite-3.40.0/src/ |
| H A D | loadext.c | 357 sqlite3_create_function_v2,
|
| H A D | sqlite3ext.h | 559 #define sqlite3_create_function_v2 sqlite3_api->create_function_v2 macro
|
| H A D | main.c | 2011 int sqlite3_create_function_v2( in sqlite3_create_function_v2() function 2123 return sqlite3_create_function_v2(db, zName, nArg, SQLITE_UTF8, in sqlite3_overload_function()
|
| H A D | test1.c | 1904 rc = sqlite3_create_function_v2(db, zFunc, nArg, enc, (void *)p, in test_create_function_v2()
|
| H A D | sqlite.h.in | 5290 ** ^(If the final parameter to sqlite3_create_function_v2() or 5295 ** sqlite3_create_function_v2() fails. ^When the destructor callback is 5297 ** data pointer which was the fifth parameter to sqlite3_create_function_v2(). 5339 int sqlite3_create_function_v2( 5382 ** [sqlite3_create_function_v2()].
|
| /sqlite-3.40.0/ext/misc/ |
| H A D | spellfix.c | 1215 rc = sqlite3_create_function_v2(db, "editdist3", in editDist3Install() 1219 rc = sqlite3_create_function_v2(db, "editdist3", in editDist3Install() 1224 rc = sqlite3_create_function_v2(db, "editdist3", in editDist3Install()
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | rtree.c | 4535 return sqlite3_create_function_v2(db, zGeom, -1, SQLITE_ANY, in sqlite3_rtree_geometry_callback() 4563 return sqlite3_create_function_v2(db, zQueryFunc, -1, SQLITE_ANY, in sqlite3_rtree_query_callback()
|