Home
last modified time | relevance | path

Searched refs:oss (Results 1 – 8 of 8) sorted by relevance

/rocksdb-6.9/db/blob/
Dblob_file_meta.cc18 std::ostringstream oss; in DebugString() local
19 oss << (*this); in DebugString()
21 return oss.str(); in DebugString()
36 std::ostringstream oss; in DebugString() local
37 oss << (*this); in DebugString()
39 return oss.str(); in DebugString()
Dblob_index.h115 std::ostringstream oss; in DebugString() local
118 oss << "[inlined blob] value:" << value_.ToString(output_hex); in DebugString()
120 oss << "[blob ref] file:" << file_number_ << " offset:" << offset_ in DebugString()
125 oss << " exp:" << expiration_; in DebugString()
128 return oss.str(); in DebugString()
Dblob_file_garbage.cc89 std::ostringstream oss; in DebugString() local
91 oss << *this; in DebugString()
93 return oss.str(); in DebugString()
Dblob_file_addition.cc103 std::ostringstream oss; in DebugString() local
105 oss << *this; in DebugString()
107 return oss.str(); in DebugString()
/rocksdb-6.9/db/
Dversion_builder.cc190 std::ostringstream oss; in CheckConsistencyOfOldestBlobFileReference() local
191 oss << "Blob file #" << blob_file_number in CheckConsistencyOfOldestBlobFileReference()
194 return Status::Corruption("VersionBuilder", oss.str()); in CheckConsistencyOfOldestBlobFileReference()
307 std::ostringstream oss; in CheckConsistency() local
308 oss << "Blob file #" << blob_file_meta->GetBlobFileNumber() in CheckConsistency()
311 return Status::Corruption("VersionBuilder", oss.str()); in CheckConsistency()
385 std::ostringstream oss; in ApplyBlobFileAddition() local
388 return Status::Corruption("VersionBuilder", oss.str()); in ApplyBlobFileAddition()
412 std::ostringstream oss; in ApplyBlobFileGarbage() local
413 oss << "Blob file #" << blob_file_number << " not found"; in ApplyBlobFileGarbage()
[all …]
/rocksdb-6.9/java/
DRELEASE.md55 1. Go to [https://oss.sonatype.org/#stagingRepositories](https://oss.sonatype.org/#stagingRepositor…
57 3. If all is well, follow [these steps](https://oss.sonatype.org/#stagingRepositories) to close the…
/rocksdb-6.9/utilities/blob_db/
Dblob_db_impl.cc884 std::ostringstream oss; in SelectBlobFileTTL() local
885 oss << "SelectBlobFileTTL range: [" << exp_low << ',' << exp_high << ')'; in SelectBlobFileTTL()
890 /* reason */ oss.str(), blob_file, &writer); in SelectBlobFileTTL()
Dblob_db_test.cc1387 std::ostringstream oss; in TEST_F() local
1388 oss << "key" << std::setw(4) << std::setfill('0') << i; in TEST_F()
1390 const std::string key(oss.str()); in TEST_F()