| /sqlite-3.40.0/ext/lsm1/lsm-test/ |
| H A D | lsmtest.h | 107 int test_mdb_open(const char*, const char *zFile, int bClear, TestDb **ppDb); 122 int test_lsm_open(const char*, const char *zFile, int bClear, TestDb **ppDb); 123 int test_lsm_lomem_open(const char*, const char*, int bClear, TestDb **ppDb); 125 int test_lsm_zip_open(const char*, const char*, int bClear, TestDb **ppDb); 126 int test_lsm_small_open(const char*, const char*, int bClear, TestDb **ppDb); 127 int test_lsm_mt2(const char*, const char *zFile, int bClear, TestDb **ppDb); 128 int test_lsm_mt3(const char*, const char *zFile, int bClear, TestDb **ppDb); 133 int test_bt_open(const char*, const char *zFile, int bClear, TestDb **ppDb); 160 void testReopen(TestDb **ppDb, int *pRc); 161 void testClose(TestDb **ppDb); [all …]
|
| H A D | lsmtest_tdb.c | 185 TestDb **ppDb in test_leveldb_open() argument 220 *ppDb = 0; in test_leveldb_open() 288 TestDb **ppDb in kc_open() argument 307 *ppDb = 0; in kc_open() 311 *ppDb = pTestDb; in kc_open() 366 TestDb **ppDb in mdb_open() argument 385 *ppDb = 0; in mdb_open() 389 *ppDb = pTestDb; in mdb_open() 625 TestDb **ppDb in sql_open() argument 682 *ppDb = 0; in sql_open() [all …]
|
| H A D | lsmtest_tdb3.c | 943 TestDb **ppDb in testLsmOpen() argument 1025 *ppDb = (TestDb *)pDb; in testLsmOpen() 1033 TestDb **ppDb in test_lsm_open() argument 1042 TestDb **ppDb in test_lsm_small_open() argument 1052 TestDb **ppDb in test_lsm_lomem_open() argument 1067 TestDb **ppDb in test_lsm_lomem2_open() argument 1080 TestDb **ppDb in test_lsm_zip_open() argument 1179 return testLsmOpen(zCfg, zDb, bClear, ppDb); in tdb_lsm_open() 1402 TestDb **ppDb in test_lsm_mt2() argument 1412 TestDb **ppDb in test_lsm_mt3() argument [all …]
|
| H A D | lsmtest1.c | 95 int testControlDb(TestDb **ppDb){ in testControlDb() argument 97 return tdb_open("kyotocabinet", "tmp.db", 1, ppDb); in testControlDb() 99 return tdb_open("sqlite3", "", 1, ppDb); in testControlDb() 254 void testReopenRecover(TestDb **ppDb, int *pRc){ in testReopenRecover() argument 256 const char *zLib = tdb_library_name(*ppDb); in testReopenRecover() 259 testClose(ppDb); in testReopenRecover() 261 *pRc = tdb_open(zLib, 0, 0, ppDb); in testReopenRecover()
|
| H A D | lsmtest_tdb2.cc | 16 int test_kc_open(const char *zFilename, int bClear, TestDb **ppDb){ in test_kc_open() argument 45 *ppDb = (TestDb *)pKcDb; in test_kc_open() 222 TestDb **ppDb in test_mdb_open() argument 246 *ppDb = (TestDb *)pMdb; in test_mdb_open()
|
| H A D | lsmtest_tdb.h | 36 int tdb_open(const char *zLibrary, const char *zDb, int bClear, TestDb **ppDb); 130 int tdb_lsm_open(const char *zCfg, const char *zDb, int bClear, TestDb **ppDb);
|
| H A D | lsmtest_tdb4.c | 687 TestDb **ppDb in test_bt_open() argument 759 *ppDb = &p->base; in test_bt_open() 767 TestDb **ppDb in test_fbt_open() argument 769 return test_bt_open("fast=1", zFilename, bClear, ppDb); in test_fbt_open() 776 TestDb **ppDb in test_fbts_open() argument 778 return test_bt_open("fast=1 blksz=32K pagesz=512", zFilename, bClear, ppDb); in test_fbts_open()
|
| H A D | lsmtest_main.c | 306 void testClose(TestDb **ppDb){ in testClose() argument 307 tdb_close(*ppDb); in testClose() 308 *ppDb = 0; in testClose() 324 void testReopen(TestDb **ppDb, int *pRc){ in testReopen() argument 327 zLib = tdb_library_name(*ppDb); in testReopen() 328 testClose(ppDb); in testReopen() 329 *pRc = tdb_open(zLib, 0, 0, ppDb); in testReopen()
|
| H A D | lsmtest6.c | 71 lsm_db **ppDb, in testOomOpen() argument 76 rc = lsm_new(tdb_lsm_env(), ppDb); in testOomOpen() 77 if( rc==LSM_OK ) rc = lsm_open(*ppDb, zName); in testOomOpen()
|
| /sqlite-3.40.0/ext/repair/ |
| H A D | sqlite3_checker.c.in | 25 int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb){ 30 *ppDb = p->db; 33 *ppDb = 0;
|
| /sqlite-3.40.0/src/ |
| H A D | main.c | 3176 if( ppDb==0 ) return SQLITE_MISUSE_BKPT; in openDatabase() 3178 *ppDb = 0; in openDatabase() 3500 *ppDb = db; in openDatabase() 3518 sqlite3 **ppDb in sqlite3_open() argument 3520 return openDatabase(zFilename, ppDb, in sqlite3_open() 3538 sqlite3 **ppDb in sqlite3_open16() argument 3545 if( ppDb==0 ) return SQLITE_MISUSE_BKPT; in sqlite3_open16() 3547 *ppDb = 0; in sqlite3_open16() 3557 rc = openDatabase(zFilename8, ppDb, in sqlite3_open16() 3559 assert( *ppDb || rc==SQLITE_NOMEM ); in sqlite3_open16() [all …]
|
| H A D | test_server.c | 332 int sqlite3_client_open(const char *zDatabaseName, sqlite3 **ppDb){ in sqlite3_client_open() argument 337 *ppDb = msg.pDb; in sqlite3_client_open()
|
| H A D | test_blob.c | 29 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
|
| H A D | test_schema.c | 304 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
|
| H A D | test_intarray.c | 289 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
|
| H A D | test_window.c | 21 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
|
| H A D | test_tclvar.c | 495 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
|
| H A D | test_fs.c | 870 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
|
| H A D | test_bestindex.c | 726 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
|
| H A D | test8.c | 1352 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
|
| /sqlite-3.40.0/ext/wasm/ |
| H A D | batch-runner.js | 496 const ppDb = wasm.scopedAllocPtr(); 497 const rc = capi.sqlite3_open_v2(d.filename, ppDb, oFlags, null); 498 pDb = wasm.getPtrValue(ppDb)
|
| /sqlite-3.40.0/ext/lsm1/ |
| H A D | lsm_shared.c | 562 lsm_db **ppDb; in lsmDbDatabaseRelease() local 570 for(ppDb=&p->pConn; *ppDb!=pDb; ppDb=&((*ppDb)->pNext)); in lsmDbDatabaseRelease() 571 *ppDb = pDb->pNext; in lsmDbDatabaseRelease()
|
| H A D | lsm.h | 124 int lsm_new(lsm_env*, lsm_db **ppDb);
|
| H A D | lsm_main.c | 73 int lsm_new(lsm_env *pEnv, lsm_db **ppDb){ in lsm_new() argument 81 *ppDb = pDb = (lsm_db *)lsmMallocZero(pEnv, sizeof(lsm_db)); in lsm_new()
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5_tcl.c | 54 static int f5tDbPointer(Tcl_Interp *interp, Tcl_Obj *pObj, sqlite3 **ppDb){ in f5tDbPointer() argument 60 *ppDb = p->db; in f5tDbPointer() 93 sqlite3 **ppDb, in f5tDbAndApi() argument 117 *ppDb = db; in f5tDbAndApi()
|