Home | History | Annotate | Download | only in orig

Lines Matching defs:sqlite3_create_function

773 ** [sqlite3_prepare_v2()], [sqlite3_create_function()], and
4339 ** invoke sqlite3_create_function() or sqlite3_create_function16() multiple
4388 SQLITE_API int sqlite3_create_function(
4430 #define SQLITE_ANY 5 /* sqlite3_create_function only */
4460 ** to [sqlite3_create_function()] and [sqlite3_create_function16()]
4556 ** of the [sqlite3_create_function()]
4570 ** of the [sqlite3_create_function()]
4645 ** [sqlite3_create_function()] and [sqlite3_create_function16()]
63279 ** parameter) of the sqlite3_create_function() and
91273 #define sqlite3_create_function sqlite3_api->create_function
91583 sqlite3_create_function,
113507 ** This function is exactly the same as sqlite3_create_function(), except
113509 ** that if a malloc() fails in sqlite3_create_function(), an error code
113606 SQLITE_API int sqlite3_create_function(
123293 return sqlite3_create_function(
124795 rc = sqlite3_create_function(db, zName, 1, any, p, scalarFunc, 0, 0);
124798 rc = sqlite3_create_function(db, zName, 2, any, p, scalarFunc, 0, 0);
124802 rc = sqlite3_create_function(db, zTest, 2, any, p, testFunc, 0, 0);
124805 rc = sqlite3_create_function(db, zTest, 3, any, p, testFunc, 0, 0);
124808 rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0);
133307 rc = sqlite3_create_function(db, "rtreenode", 2, utf8, 0, rtreenode, 0, 0);
133309 rc = sqlite3_create_function(db, "rtreedepth", 1, utf8, 0,rtreedepth, 0, 0);
133881 rc = sqlite3_create_function(