| /rocksdb-6.9/env/ |
| D | file_system.cc | 13 FileSystem::FileSystem() {} in FileSystem() function in ROCKSDB_NAMESPACE::FileSystem 15 FileSystem::~FileSystem() {} in ~FileSystem() 17 Status FileSystem::Load(const std::string& value, in Load() 18 std::shared_ptr<FileSystem>* result) { in Load() 29 IOStatus FileSystem::ReuseWritableFile(const std::string& fname, in ReuseWritableFile() 41 FileOptions FileSystem::OptimizeForLogRead( in OptimizeForLogRead() 48 FileOptions FileSystem::OptimizeForManifestRead( in OptimizeForManifestRead() 64 FileOptions FileSystem::OptimizeForManifestWrite( in OptimizeForManifestWrite() 69 FileOptions FileSystem::OptimizeForCompactionTableWrite( in OptimizeForCompactionTableWrite() 78 FileOptions FileSystem::OptimizeForCompactionTableRead( in OptimizeForCompactionTableRead() [all …]
|
| D | env_posix.cc | 135 PosixEnv(const PosixEnv* default_env, std::shared_ptr<FileSystem> fs); 406 : CompositeEnvWrapper(this, FileSystem::Default()), in PosixEnv() 423 PosixEnv::PosixEnv(const PosixEnv* default_env, std::shared_ptr<FileSystem> fs) in PosixEnv() 526 std::unique_ptr<Env> NewCompositeEnv(std::shared_ptr<FileSystem> fs) { in NewCompositeEnv()
|
| D | mock_env.h | 110 typedef std::map<std::string, MemFile*> FileSystem; typedef 112 FileSystem file_map_; // Protected by mutex_.
|
| D | env.cc | 29 Env::Env(std::shared_ptr<FileSystem> fs) in Env() 471 const std::shared_ptr<FileSystem>& Env::GetFileSystem() const { in GetFileSystem() 476 std::unique_ptr<Env> NewCompositeEnv(std::shared_ptr<FileSystem> fs) { in NewCompositeEnv()
|
| D | fs_posix.cc | 129 class PosixFileSystem : public FileSystem { 1019 std::shared_ptr<FileSystem> FileSystem::Default() { in Default()
|
| /rocksdb-6.9/db/ |
| D | error_handler_fs_test.cc | 47 : FileSystemWrapper(FileSystem::Default()), in DBErrorHandlingFS() 154 new FaultInjectionTestFS(FileSystem::Default())); in TEST_F() 186 new FaultInjectionTestFS(FileSystem::Default())); in TEST_F() 249 new FaultInjectionTestFS(FileSystem::Default())); in TEST_F() 292 new FaultInjectionTestFS(FileSystem::Default())); in TEST_F() 337 new FaultInjectionTestFS(FileSystem::Default())); in TEST_F() 387 new FaultInjectionTestFS(FileSystem::Default())); in TEST_F() 460 new FaultInjectionTestFS(FileSystem::Default())); in TEST_F() 515 new FaultInjectionTestFS(FileSystem::Default())); in TEST_F() 974 std::shared_ptr<FileSystem> fs(fault_fs.back()); in TEST_F() [all …]
|
| D | version_set.h | 699 FileSystem* fs_; 878 FileSystem* fs, 902 const std::string& dbname, FileSystem* fs); 1153 FileSystem* const fs_;
|
| D | import_column_family_job.h | 64 FileSystem* fs_;
|
| D | builder.h | 65 const std::string& dbname, Env* env, FileSystem* fs,
|
| D | wal_manager.h | 94 FileSystem* fs_;
|
| D | external_sst_file_ingestion_job.h | 162 FileSystem* fs_;
|
| /rocksdb-6.9/include/rocksdb/ |
| D | file_system.h | 153 class FileSystem { 155 FileSystem(); 158 FileSystem(const FileSystem&) = delete; 160 virtual ~FileSystem(); 168 std::shared_ptr<FileSystem>* result); 175 static std::shared_ptr<FileSystem> Default(); 528 void operator=(const FileSystem&); 1008 class FileSystemWrapper : public FileSystem { 1017 FileSystem* target() const { return target_.get(); } in target() 1198 std::shared_ptr<FileSystem> target_; [all …]
|
| D | sst_file_manager.h | 116 Env* env, std::shared_ptr<FileSystem> fs,
|
| D | env.h | 60 class FileSystem; variable 146 Env(std::shared_ptr<FileSystem> fs); 547 const std::shared_ptr<FileSystem>& GetFileSystem() const; 557 std::shared_ptr<FileSystem> file_system_; 1616 std::unique_ptr<Env> NewCompositeEnv(std::shared_ptr<FileSystem> fs);
|
| /rocksdb-6.9/file/ |
| D | file_util.h | 19 extern Status CopyFile(FileSystem* fs, const std::string& source, 23 extern Status CreateFile(FileSystem* fs, const std::string& destination,
|
| D | sst_file_manager_impl.cc | 22 SstFileManagerImpl::SstFileManagerImpl(Env* env, std::shared_ptr<FileSystem> fs, in SstFileManagerImpl() 486 std::shared_ptr<FileSystem> fs; in NewSstFileManager() 489 fs = FileSystem::Default(); in NewSstFileManager() 499 SstFileManager* NewSstFileManager(Env* env, std::shared_ptr<FileSystem> fs, in NewSstFileManager()
|
| D | delete_scheduler.h | 36 DeleteScheduler(Env* env, FileSystem* fs, int64_t rate_bytes_per_sec, 98 FileSystem* fs_;
|
| D | sst_file_manager_impl.h | 30 explicit SstFileManagerImpl(Env* env, std::shared_ptr<FileSystem> fs, 151 std::shared_ptr<FileSystem> fs_;
|
| D | file_util.cc | 20 Status CopyFile(FileSystem* fs, const std::string& source, in CopyFile() 72 Status CreateFile(FileSystem* fs, const std::string& destination, in CreateFile()
|
| D | random_access_file_reader_test.cc | 33 fs_ = FileSystem::Default(); in SetUp() 80 std::shared_ptr<FileSystem> fs_;
|
| D | read_write_util.h | 23 extern IOStatus NewWritableFile(FileSystem* fs, const std::string& fname,
|
| D | read_write_util.cc | 17 IOStatus NewWritableFile(FileSystem* fs, const std::string& fname, in NewWritableFile()
|
| /rocksdb-6.9/options/ |
| D | options_parser.h | 38 const std::string& file_name, FileSystem* fs); 53 Status Parse(const std::string& file_name, FileSystem* fs, 77 const std::string& file_name, FileSystem* fs,
|
| D | options_parser.cc | 40 const std::string& file_name, FileSystem* fs) { in PersistRocksDBOptions() 205 Status RocksDBOptionsParser::Parse(const std::string& file_name, FileSystem* fs, in Parse() 661 const std::string& file_name, FileSystem* fs, in VerifyRocksDBOptionsFromFile()
|
| D | db_options.h | 26 std::shared_ptr<FileSystem> fs;
|