/external/chromium_org/third_party/sqlite/src/src/ |
D | test_func.c | 451 sqlite3_create_function(db, aFuncs[i].zName, aFuncs[i].nArg, in registerTestFunctions() 455 sqlite3_create_function(db, "test_agg_errmsg16", 0, SQLITE_ANY, 0, 0, in registerTestFunctions() 509 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, tStep,tStep,tFinal); in abuse_create_function() 512 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, tStep, tStep, 0); in abuse_create_function() 515 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, tStep, 0, tFinal); in abuse_create_function() 518 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, 0, 0, tFinal); in abuse_create_function() 521 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, 0, tStep, 0); in abuse_create_function() 524 rc = sqlite3_create_function(db, "tx", -2, SQLITE_UTF8, 0, tStep, 0, 0); in abuse_create_function() 527 rc = sqlite3_create_function(db, "tx", 128, SQLITE_UTF8, 0, tStep, 0, 0); in abuse_create_function() 530 rc = sqlite3_create_function(db, "funcxx" in abuse_create_function() [all …]
|
D | test_loadext.c | 101 nErr |= sqlite3_create_function(db, "half", 1, SQLITE_ANY, 0, halfFunc, 0, 0); in testloadext_init() 102 nErr |= sqlite3_create_function(db, "sqlite3_status", 1, SQLITE_ANY, 0, in testloadext_init() 104 nErr |= sqlite3_create_function(db, "sqlite3_status", 2, SQLITE_ANY, 0, in testloadext_init()
|
D | test_autoext.c | 41 sqlite3_create_function(db, "sqr", 1, SQLITE_ANY, 0, sqrFunc, 0, 0); in sqr_init() 66 sqlite3_create_function(db, "cube", 1, SQLITE_ANY, 0, cubeFunc, 0, 0); in cube_init()
|
D | test1.c | 1004 rc = sqlite3_create_function(db, "x_coalesce", -1, SQLITE_ANY, 0, in test_create_function() 1007 rc = sqlite3_create_function(db, "hex8", 1, SQLITE_ANY, 0, in test_create_function() 1012 rc = sqlite3_create_function(db, "hex16", 1, SQLITE_ANY, 0, in test_create_function() 1017 rc = sqlite3_create_function(db, "tkt2213func", 1, SQLITE_ANY, 0, in test_create_function() 1021 rc = sqlite3_create_function(db, "pointer_change", 4, SQLITE_ANY, 0, in test_create_function() 1147 rc = sqlite3_create_function(db, "x_count", 0, SQLITE_UTF8, 0, 0, in test_create_aggregate() 1150 rc = sqlite3_create_function(db, "x_count", 1, SQLITE_UTF8, 0, 0, in test_create_aggregate() 1155 rc = sqlite3_create_function(db, "legacy_count", 0, SQLITE_ANY, 0, 0, in test_create_aggregate() 2184 rc = sqlite3_create_function(db, argv[2], -1, SQLITE_UTF8, 0, in test_register_func() 2853 sqlite3_create_function(db, "test_function", 1, SQLITE_UTF8, in test_function() [all …]
|
D | loadext.c | 177 sqlite3_create_function,
|
D | sqlite3ext.h | 276 #define sqlite3_create_function sqlite3_api->create_function macro
|
D | test_multiplex.c | 277 rc = sqlite3_create_function(db, "multiplex_control", 2, SQLITE_ANY, in multiplexFuncInit()
|
/external/sqlite/android/ |
D | sqlite3_android.cpp | 449 …err = sqlite3_create_function(handle, "_TOKENIZE", 4, SQLITE_UTF16, collator, tokenize, NULL, NULL… in register_localized_collators() 453 …err = sqlite3_create_function(handle, "_TOKENIZE", 5, SQLITE_UTF16, collator, tokenize, NULL, NULL… in register_localized_collators() 457 …err = sqlite3_create_function(handle, "_TOKENIZE", 6, SQLITE_UTF16, collator, tokenize, NULL, NULL… in register_localized_collators() 525 err = sqlite3_create_function( in register_android_functions() 533 err = sqlite3_create_function( in register_android_functions() 541 …err = sqlite3_create_function(handle, "_DELETE_FILE", 1, SQLITE_UTF8, NULL, delete_file, NULL, NUL… in register_android_functions() 548 err = sqlite3_create_function(handle, "_LOG", 1, SQLITE_UTF8, NULL, android_log, NULL, NULL); in register_android_functions() 557 err = sqlite3_create_function(handle, in register_android_functions()
|
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
D | fts2_tokenizer.c | 360 || (rc = sqlite3_create_function(db, zName, 1, any, p, scalarFunc, 0, 0)) in sqlite3Fts2InitHashTable() 361 || (rc = sqlite3_create_function(db, zName, 2, any, p, scalarFunc, 0, 0)) in sqlite3Fts2InitHashTable() 363 || (rc = sqlite3_create_function(db, zTest, 2, any, p, testFunc, 0, 0)) in sqlite3Fts2InitHashTable() 364 || (rc = sqlite3_create_function(db, zTest, 3, any, p, testFunc, 0, 0)) in sqlite3Fts2InitHashTable() 365 || (rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0)) in sqlite3Fts2InitHashTable()
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
D | fts3_tokenizer.c | 469 rc = sqlite3_create_function(db, zName, 1, any, p, scalarFunc, 0, 0); in sqlite3Fts3InitHashTable() 472 rc = sqlite3_create_function(db, zName, 2, any, p, scalarFunc, 0, 0); in sqlite3Fts3InitHashTable() 476 rc = sqlite3_create_function(db, zTest, 2, any, p, testFunc, 0, 0); in sqlite3Fts3InitHashTable() 479 rc = sqlite3_create_function(db, zTest, 3, any, p, testFunc, 0, 0); in sqlite3Fts3InitHashTable() 482 rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0); in sqlite3Fts3InitHashTable()
|
D | fts3_expr.c | 931 return sqlite3_create_function( in sqlite3Fts3ExprInitTestInterface()
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | tkt2213.test | 23 sqlite3_create_function db
|
D | misc6.test | 23 sqlite3_create_function $DB
|
D | misuse.test | 59 sqlite3_create_function $::DB 106 sqlite3_create_function $::DB
|
D | ptrchng.test | 36 sqlite3_create_function db
|
D | malloc.test | 286 # sqlite3_create_function(). 288 set rc [sqlite3_create_function db]
|
/external/chromium_org/third_party/sqlite/src/ext/icu/ |
D | icu.c | 482 rc = sqlite3_create_function( in sqlite3IcuInit()
|
/external/sqlite/dist/ |
D | Android.patch | 18 sqlite3_create_function(db, "writefile", 2, SQLITE_UTF8, 0,
|
D | sqlite3ext.h | 314 #define sqlite3_create_function sqlite3_api->create_function macro
|
D | sqlite3.h | 4072 SQLITE_API int sqlite3_create_function(
|
D | shell.c | 1729 sqlite3_create_function(db, "shellstatic", 0, SQLITE_UTF8, 0, in open_db() 1741 sqlite3_create_function(db, "readfile", 1, SQLITE_UTF8, 0, in open_db() 1743 sqlite3_create_function(db, "writefile", 2, SQLITE_UTF8, 0, in open_db()
|
/external/sqlite/dist/orig/ |
D | sqlite3ext.h | 314 #define sqlite3_create_function sqlite3_api->create_function macro
|
D | sqlite3.h | 4072 SQLITE_API int sqlite3_create_function(
|
D | shell.c | 1724 sqlite3_create_function(db, "shellstatic", 0, SQLITE_UTF8, 0, in open_db() 1736 sqlite3_create_function(db, "readfile", 1, SQLITE_UTF8, 0, in open_db() 1738 sqlite3_create_function(db, "writefile", 2, SQLITE_UTF8, 0, in open_db()
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.h | 3523 SQLITE_API int sqlite3_create_function(
|