sqlite / injectable_functions /os_injectable_functions.json
AryaWu's picture
Upload folder using huggingface_hub
7510827 verified
[
{
"function_name": "sqlite3OsFileControl",
"function_signature": "int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg)",
"test_filename": "tests_os_sqlite3OsFileControl.c"
},
{
"function_name": "sqlite3OsShmMap",
"function_signature": "int sqlite3OsShmMap(\n sqlite3_file *id, /* Database file handle */\n int iPage,\n int pgsz,\n int bExtend, /* True to extend file if necessary */\n void volatile **pp /* OUT: Pointer to mapping */\n)",
"test_filename": "tests_os_sqlite3OsShmMap.c"
},
{
"function_name": "sqlite3OsOpen",
"function_signature": "int sqlite3OsOpen(\n sqlite3_vfs *pVfs,\n const char *zPath,\n sqlite3_file *pFile,\n int flags,\n int *pFlagsOut\n)",
"test_filename": "tests_os_sqlite3OsOpen.c"
},
{
"function_name": "sqlite3OsFullPathname",
"function_signature": "int sqlite3OsFullPathname(\n sqlite3_vfs *pVfs,\n const char *zPath,\n int nPathOut,\n char *zPathOut\n)",
"test_filename": "tests_os_sqlite3OsFullPathname.c"
},
{
"function_name": "sqlite3OsRandomness",
"function_signature": "int sqlite3OsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut)",
"test_filename": "tests_os_sqlite3OsRandomness.c"
},
{
"function_name": "sqlite3OsCurrentTimeInt64",
"function_signature": "int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut)",
"test_filename": "tests_os_sqlite3OsCurrentTimeInt64.c"
},
{
"function_name": "sqlite3OsOpenMalloc",
"function_signature": "int sqlite3OsOpenMalloc(\n sqlite3_vfs *pVfs,\n const char *zFile,\n sqlite3_file **ppFile,\n int flags,\n int *pOutFlags\n)",
"test_filename": "tests_os_sqlite3OsOpenMalloc.c"
},
{
"function_name": "vfsUnlink",
"function_signature": "static void vfsUnlink(sqlite3_vfs *pVfs)",
"test_filename": "tests_os_vfsUnlink.c"
},
{
"function_name": "sqlite3_vfs_register",
"function_signature": "int sqlite3_vfs_register(sqlite3_vfs *pVfs, int makeDflt)",
"test_filename": "tests_os_sqlite3_vfs_register.c"
},
{
"function_name": "sqlite3_vfs_unregister",
"function_signature": "int sqlite3_vfs_unregister(sqlite3_vfs *pVfs)",
"test_filename": "tests_os_sqlite3_vfs_unregister.c"
}
]