Home
last modified time | relevance | path

Searched refs:ppDb (Results 1 – 25 of 28) sorted by relevance

12

/sqlite-3.40.0/ext/lsm1/lsm-test/
H A Dlsmtest.h107 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 Dlsmtest_tdb.c185 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 Dlsmtest_tdb3.c943 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 Dlsmtest1.c95 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 Dlsmtest_tdb2.cc16 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 Dlsmtest_tdb.h36 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 Dlsmtest_tdb4.c687 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 Dlsmtest_main.c306 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 Dlsmtest6.c71 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 Dsqlite3_checker.c.in25 int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb){
30 *ppDb = p->db;
33 *ppDb = 0;
/sqlite-3.40.0/src/
H A Dmain.c3176 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 Dtest_server.c332 int sqlite3_client_open(const char *zDatabaseName, sqlite3 **ppDb){ in sqlite3_client_open() argument
337 *ppDb = msg.pDb; in sqlite3_client_open()
H A Dtest_blob.c29 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
H A Dtest_schema.c304 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
H A Dtest_intarray.c289 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
H A Dtest_window.c21 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
H A Dtest_tclvar.c495 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
H A Dtest_fs.c870 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
H A Dtest_bestindex.c726 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
H A Dtest8.c1352 extern int getDbPointer(Tcl_Interp *interp, const char *zA, sqlite3 **ppDb);
/sqlite-3.40.0/ext/wasm/
H A Dbatch-runner.js496 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 Dlsm_shared.c562 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 Dlsm.h124 int lsm_new(lsm_env*, lsm_db **ppDb);
H A Dlsm_main.c73 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 Dfts5_tcl.c54 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()

12