HomeSort by relevance Sort by last modified time
    Searched full:sqlite3_create_function (Results 1 - 25 of 41) sorted by null

1 2

  /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
test_server.c 109 ** sqlite3_create_function
test_multiplex.c 277 rc = sqlite3_create_function(db, "multiplex_control", 2, SQLITE_ANY,
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
tkt2213.test 23 sqlite3_create_function db
misc6.test 23 sqlite3_create_function $DB
misuse.test 59 sqlite3_create_function $::DB
106 sqlite3_create_function $::DB
ptrchng.test 36 sqlite3_create_function db
malloc.test 286 # sqlite3_create_function().
288 set rc [sqlite3_create_function db]
bind.test 621 sqlite3_create_function $DB
like.test 588 db function like newlike ;# Uses -1 for nArg in sqlite3_create_function
func.test 1179 # Try to misuse the sqlite3_create_function() interface. Verify that
    [all...]
  /external/sqlite/android/
sqlite3_android.cpp 449 err = sqlite3_create_function(handle, "_TOKENIZE", 4, SQLITE_UTF16, collator, tokenize, NULL, NULL);
453 err = sqlite3_create_function(handle, "_TOKENIZE", 5, SQLITE_UTF16, collator, tokenize, NULL, NULL);
457 err = sqlite3_create_function(handle, "_TOKENIZE", 6, SQLITE_UTF16, collator, tokenize, NULL, NULL);
525 err = sqlite3_create_function(
533 err = sqlite3_create_function(
541 err = sqlite3_create_function(handle, "_DELETE_FILE", 1, SQLITE_UTF8, NULL, delete_file, NULL, NULL);
548 err = sqlite3_create_function(handle, "_LOG", 1, SQLITE_UTF8, NULL, android_log, NULL, NULL);
557 err = sqlite3_create_function(handle,
  /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/fts3/
fts3_tokenizer.c 469 rc = sqlite3_create_function(db, zName, 1, any, p, scalarFunc, 0, 0);
472 rc = sqlite3_create_function(db, zName, 2, any, p, scalarFunc, 0, 0);
476 rc = sqlite3_create_function(db, zTest, 2, any, p, testFunc, 0, 0);
479 rc = sqlite3_create_function(db, zTest, 3, any, p, testFunc, 0, 0);
482 rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0);
fts3_expr.c 931 return sqlite3_create_function(
  /external/javasqlite/src/main/java/SQLite/
Constants.java 158 public static final int SQLITE_ANY = 5; /* sqlite3_create_function only */
  /external/chromium_org/third_party/sqlite/src/ext/icu/
icu.c 482 rc = sqlite3_create_function(
  /external/sqlite/dist/orig/
sqlite3ext.h 300 #define sqlite3_create_function sqlite3_api->create_function macro
  /external/sqlite/dist/
sqlite3ext.h 300 #define sqlite3_create_function sqlite3_api->create_function macro
  /frameworks/base/core/jni/
android_database_SQLiteConnection.cpp 263 ALOGE("sqlite3_create_function returned %d", err);
    [all...]

Completed in 974 milliseconds

1 2