Home
last modified time | relevance | path

Searched refs:PathName (Results 1 – 14 of 14) sorted by relevance

/rocksdb-6.9/utilities/blob_db/
Dblob_file.cc49 std::string pn(PathName()); in ~BlobFile()
50 Status s = Env::Default()->DeleteFile(PathName()); in ~BlobFile()
60 std::string BlobFile::PathName() const { in PathName() function in ROCKSDB_NAMESPACE::blob_db::BlobFile
69 std::string path_name(PathName()); in OpenRandomAccessReader()
133 return Status::IOError("File does not have footer", PathName()); in ReadFooter()
212 s = env->NewRandomAccessFile(PathName(), &rfile, env_options); in GetReader()
217 PathName().c_str(), s.ToString().c_str(), in GetReader()
223 NewLegacyRandomAccessFileWrapper(rfile), PathName()); in GetReader()
233 Status s = env->GetFileSize(PathName(), &file_size); in ReadMetadata()
253 s = env->NewRandomAccessFile(PathName(), &file, env_options); in ReadMetadata()
[all …]
Dblob_db_impl.cc671 blob_file->PathName().c_str(), reason.c_str()); in NewBlobFile()
689 std::string fpath(bfile->PathName()); in CreateWriterLocked()
798 (*blob_file)->PathName().c_str(), s.ToString().c_str()); in CreateBlobFileAndWriter()
809 (*blob_file)->PathName().c_str(), s.ToString().c_str()); in CreateBlobFileAndWriter()
1301 bfile->PathName().c_str(), s.ToString().c_str()); in AppendBlob()
1689 bfile->BlobFileNumber(), bfile->PathName().c_str()); in CloseBlobFile()
1925 bfile->PathName().c_str()); in DeleteObsoleteFiles()
1932 bfile->PathName().c_str()); in DeleteObsoleteFiles()
1940 bfile->PathName(), blob_dir_, true, in DeleteObsoleteFiles()
1945 bfile->PathName().c_str()); in DeleteObsoleteFiles()
[all …]
Dblob_compaction_filter.cc224 blob_file_->PathName().c_str(), in WriteBlobToNewFile()
276 blob_file_->PathName().c_str(), s.ToString().c_str()); in CloseAndRegisterNewBlobFile()
Dblob_file.h123 std::string PathName() const;
/rocksdb-6.9/db/
Ddeletefile_test.cc461 ASSERT_OK(env_->FileExists(wal_dir_ + "/" + alive_log->PathName())); in TEST_F()
463 alive_log->PathName().c_str()); in TEST_F()
464 ASSERT_TRUE(!db_->DeleteFile(alive_log->PathName()).ok()); in TEST_F()
465 ASSERT_OK(env_->FileExists(wal_dir_ + "/" + alive_log->PathName())); in TEST_F()
479 ASSERT_OK(env_->FileExists(wal_dir_ + "/" + archived_log->PathName())); in TEST_F()
481 archived_log->PathName().c_str()); in TEST_F()
482 ASSERT_OK(db_->DeleteFile(archived_log->PathName())); in TEST_F()
484 env_->FileExists(wal_dir_ + "/" + archived_log->PathName())); in TEST_F()
Dwal_manager.cc97 log->PathName().c_str()); in GetSortedWalFiles()
256 std::string const file_path = archived_logs[i]->PathName(); in PurgeObsoleteWALFiles()
Dtransaction_log_impl.h32 std::string PathName() const override { in PathName() function
Ddb_log_iter_test.cc190 const auto logfile_path = dbname_ + "/" + wal_files.front()->PathName(); in TEST_F()
Ddb_wal_test.cc1559 ASSERT_GE(GetAllocatedFileSize(dbname_ + file_before->PathName()), in TEST_F()
1567 ASSERT_LT(GetAllocatedFileSize(dbname_ + file_before->PathName()), in TEST_F()
/rocksdb-6.9/utilities/checkpoint/
Dcheckpoint_impl.cc315 s = copy_file_cb(db_options.wal_dir, live_wal_files[i]->PathName(), in CreateCustomCheckpoint()
321 s = link_file_cb(db_options.wal_dir, live_wal_files[i]->PathName(), in CreateCustomCheckpoint()
329 s = copy_file_cb(db_options.wal_dir, live_wal_files[i]->PathName(), 0, in CreateCustomCheckpoint()
/rocksdb-6.9/include/rocksdb/
Dtransaction_log.h40 virtual std::string PathName() const = 0;
/rocksdb-6.9/utilities/backupable/
Dbackupable_db_test.cc89 std::string PathName() const override { return path_; } in PathName() function in ROCKSDB_NAMESPACE::__anon6f9a36820111::DummyDB::DummyLogFile
/rocksdb-6.9/tools/
Dldb_cmd.cc3175 std::string filename = db_->GetOptions().wal_dir + wal->PathName(); in DoCommand()
/rocksdb-6.9/java/rocksjni/
Dportal.h6896 std::string path_name = log_file->PathName(); in fromCppLogFile()