Lines Matching refs:DB
20 class StackableDB : public DB {
23 explicit StackableDB(DB* db) : db_(db) {} in StackableDB()
26 explicit StackableDB(std::shared_ptr<DB> db) in StackableDB()
40 virtual DB* GetBaseDB() { return db_; } in GetBaseDB()
42 virtual DB* GetRootDB() override { return db_->GetRootDB(); } in GetRootDB()
77 using DB::Put;
84 using DB::Get;
91 using DB::GetMergeOperands;
102 using DB::MultiGet;
120 using DB::IngestExternalFile;
128 using DB::IngestExternalFiles;
134 using DB::CreateColumnFamilyWithImport;
150 using DB::KeyMayExist;
158 using DB::Delete;
165 using DB::SingleDelete;
172 using DB::Merge;
183 using DB::NewIterator;
202 using DB::GetMapProperty;
203 using DB::GetProperty;
214 using DB::GetIntProperty;
220 using DB::GetAggregatedIntProperty;
226 using DB::GetApproximateSizes;
234 using DB::GetApproximateMemTableStats;
242 using DB::CompactRange;
249 using DB::CompactFiles;
281 using DB::NumberLevels;
286 using DB::MaxMemCompactionLevel;
292 using DB::Level0StopWriteTrigger;
306 using DB::GetOptions;
311 using DB::GetDBOptions;
316 using DB::Flush;
355 using DB::StartBlockCacheTrace;
362 using DB::EndBlockCacheTrace;
403 using DB::SetOptions;
416 using DB::ResetStats;
419 using DB::GetPropertiesOfAllTables;
426 using DB::GetPropertiesOfTablesInRange;
461 DB* db_;
462 std::shared_ptr<DB> shared_db_ptr_;