/external/chromium_org/third_party/sqlite/src/src/ |
test_loadext.c | 101 nErr |= sqlite3_create_function(db, "half", 1, SQLITE_ANY, 0, halfFunc, 0, 0); 102 nErr |= sqlite3_create_function(db, "sqlite3_status", 1, SQLITE_ANY, 0, 104 nErr |= sqlite3_create_function(db, "sqlite3_status", 2, SQLITE_ANY, 0,
|
test_func.c | 451 sqlite3_create_function(db, aFuncs[i].zName, aFuncs[i].nArg, 455 sqlite3_create_function(db, "test_agg_errmsg16", 0, SQLITE_ANY, 0, 0, 493 ** Make various calls to sqlite3_create_function that do not have valid 509 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, tStep,tStep,tFinal); 512 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, tStep, tStep, 0); 515 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, tStep, 0, tFinal); 518 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, 0, 0, tFinal); 521 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, 0, tStep, 0); 524 rc = sqlite3_create_function(db, "tx", -2, SQLITE_UTF8, 0, tStep, 0, 0); 527 rc = sqlite3_create_function(db, "tx", 128, SQLITE_UTF8, 0, tStep, 0, 0) [all...] |
test_autoext.c | 41 sqlite3_create_function(db, "sqr", 1, SQLITE_ANY, 0, sqrFunc, 0, 0); 66 sqlite3_create_function(db, "cube", 1, SQLITE_ANY, 0, cubeFunc, 0, 0);
|
test1.c | 977 ** Call the sqlite3_create_function API on the given database in order 986 ** sqlite3_create_function function while a query is in progress in order 1004 rc = sqlite3_create_function(db, "x_coalesce", -1, SQLITE_ANY, 0, 1007 rc = sqlite3_create_function(db, "hex8", 1, SQLITE_ANY, 0, 1012 rc = sqlite3_create_function(db, "hex16", 1, SQLITE_ANY, 0, 1017 rc = sqlite3_create_function(db, "tkt2213func", 1, SQLITE_ANY, 0, 1021 rc = sqlite3_create_function(db, "pointer_change", 4, SQLITE_ANY, 0, [all...] |
loadext.c | 177 sqlite3_create_function,
|
sqlite3ext.h | 276 #define sqlite3_create_function sqlite3_api->create_function macro
|
sqlite.h.in | 218 ** [sqlite3_prepare_v2()], [sqlite3_create_function()], and [all...] |
shell.c | [all...] |
test_multiplex.c | 277 rc = sqlite3_create_function(db, "multiplex_control", 2, SQLITE_ANY, [all...] |
main.c | 1010 ** This function is exactly the same as sqlite3_create_function(), except 1012 ** that if a malloc() fails in sqlite3_create_function(), an error code 1109 int sqlite3_create_function( function [all...] |
tclsqlite.c | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2_tokenizer.c | 360 || (rc = sqlite3_create_function(db, zName, 1, any, p, scalarFunc, 0, 0)) 361 || (rc = sqlite3_create_function(db, zName, 2, any, p, scalarFunc, 0, 0)) 363 || (rc = sqlite3_create_function(db, zTest, 2, any, p, testFunc, 0, 0)) 364 || (rc = sqlite3_create_function(db, zTest, 3, any, p, testFunc, 0, 0)) 365 || (rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0))
|
/external/chromium_org/third_party/sqlite/src/ext/icu/ |
icu.c | 482 rc = sqlite3_create_function(
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_expr.c | 931 return sqlite3_create_function(
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.h | 223 ** [sqlite3_prepare_v2()], [sqlite3_create_function()], and [all...] |
sqlite3.c | 766 ** [sqlite3_prepare_v2()], [sqlite3_create_function()], and 86758 #define sqlite3_create_function macro 108354 SQLITE_API int sqlite3_create_function( function [all...] |
/external/chromium_org/third_party/sqlite/src/ext/rtree/ |
rtree.c | [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
threadtest3.c | 516 sqlite3_create_function( [all...] |
/external/javasqlite/src/main/native/ |
sqlite_jni.c | [all...] |