Home
last modified time | relevance | path

Searched refs:sqlite3_create_function_v2 (Results 1 – 11 of 11) sorted by relevance

/sqlite-3.40.0/test/
H A Dfunc3.test13 # 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 Dsqlite3-api-glue.js390 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 Dsqlite3-api-prologue.js536 sqlite3_create_function_v2: function( method
H A Dsqlite3-api-oo1.js1017 rc = capi.sqlite3_create_function_v2(
/sqlite-3.40.0/src/
H A Dloadext.c357 sqlite3_create_function_v2,
H A Dsqlite3ext.h559 #define sqlite3_create_function_v2 sqlite3_api->create_function_v2 macro
H A Dmain.c2011 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 Dtest1.c1904 rc = sqlite3_create_function_v2(db, zFunc, nArg, enc, (void *)p, in test_create_function_v2()
H A Dsqlite.h.in5290 ** ^(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 Dspellfix.c1215 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 Drtree.c4535 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()