Home
last modified time | relevance | path

Searched refs:sqlite3_create_function (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c3156 rc = sqlite3_create_function(db, "sha3", 1, in sqlite3_shathree_init()
3160 rc = sqlite3_create_function(db, "sha3", 2, in sqlite3_shathree_init()
3165 rc = sqlite3_create_function(db, "sha3_agg", 1, in sqlite3_shathree_init()
3170 rc = sqlite3_create_function(db, "sha3_agg", 2, in sqlite3_shathree_init()
3175 rc = sqlite3_create_function(db, "sha3_query", 1, in sqlite3_shathree_init()
3180 rc = sqlite3_create_function(db, "sha3_query", 2, in sqlite3_shathree_init()
3583 rc = sqlite3_create_function(db, "sha1", 1, in sqlite3_sha_init()
3587 rc = sqlite3_create_function(db, "sha1b", 1, in sqlite3_sha_init()
3592 rc = sqlite3_create_function(db, "sha1_query", 1, in sqlite3_sha_init()
4567 rc = sqlite3_create_function(db, aFunc[i].zFuncName, aFunc[i].nArg, in sqlite3_decimal_init()
[all …]
H A Dsqlite3ext.h442 #define sqlite3_create_function sqlite3_api->create_function macro
H A Dsqlite3.h5669 SQLITE_API int sqlite3_create_function(
H A Dsqlite3.c5988 SQLITE_API int sqlite3_create_function(
138788 #define sqlite3_create_function sqlite3_api->create_function
139236 sqlite3_create_function,
184705 SQLITE_API int sqlite3_create_function(
197113 int rc = sqlite3_create_function(
197117 rc = sqlite3_create_function(db, "fts3_exprtest_rebalance",
198673 rc = sqlite3_create_function(db, zName, 1, any, p, fts3TokenizerFunc, 0, 0);
198676 rc = sqlite3_create_function(db, zName, 2, any, p, fts3TokenizerFunc, 0, 0);
198680 rc = sqlite3_create_function(db, zTest, -1, any, p, testFunc, 0, 0);
198683 rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0);
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c3013 rc = sqlite3_create_function(pDb->db, zName, nArg, flags, in DbObjCmd()