sqlite / injectable_functions /dbpage_injectable_functions.json
AryaWu's picture
Upload folder using huggingface_hub
7510827 verified
[
{
"function_name": "dbpageConnect",
"function_signature": "static int dbpageConnect(\n sqlite3 *db,\n void *pAux,\n int argc, const char *const*argv,\n sqlite3_vtab **ppVtab,\n char **pzErr\n)",
"test_filename": "tests_dbpage_dbpageConnect.c"
},
{
"function_name": "dbpageBestIndex",
"function_signature": "static int dbpageBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo)",
"test_filename": "tests_dbpage_dbpageBestIndex.c"
},
{
"function_name": "dbpageOpen",
"function_signature": "static int dbpageOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor)",
"test_filename": "tests_dbpage_dbpageOpen.c"
},
{
"function_name": "dbpageFilter",
"function_signature": "static int dbpageFilter(\n sqlite3_vtab_cursor *pCursor,\n int idxNum, const char *idxStr,\n int argc, sqlite3_value **argv\n)",
"test_filename": "tests_dbpage_dbpageFilter.c"
},
{
"function_name": "dbpageColumn",
"function_signature": "static int dbpageColumn(\n sqlite3_vtab_cursor *pCursor,\n sqlite3_context *ctx,\n int i\n)",
"test_filename": "tests_dbpage_dbpageColumn.c"
},
{
"function_name": "dbpageBeginTrans",
"function_signature": "static int dbpageBeginTrans(DbpageTable *pTab)",
"test_filename": "tests_dbpage_dbpageBeginTrans.c"
},
{
"function_name": "dbpageUpdate",
"function_signature": "static int dbpageUpdate(\n sqlite3_vtab *pVtab,\n int argc,\n sqlite3_value **argv,\n sqlite_int64 *pRowid\n)",
"test_filename": "tests_dbpage_dbpageUpdate.c"
},
{
"function_name": "dbpageSync",
"function_signature": "static int dbpageSync(sqlite3_vtab *pVtab)",
"test_filename": "tests_dbpage_dbpageSync.c"
},
{
"function_name": "sqlite3DbpageRegister",
"function_signature": "int sqlite3DbpageRegister(sqlite3 *db)",
"test_filename": "tests_dbpage_sqlite3DbpageRegister.c"
}
]