Home
last modified time | relevance | path

Searched refs:type_ (Results 1 – 6 of 6) sorted by relevance

/rocksdb-6.9/db/blob/
Dblob_index.h53 BlobIndex() : type_(Type::kUnknown) {} in BlobIndex()
55 bool IsInlined() const { return type_ == Type::kInlinedTTL; } in IsInlined()
58 return type_ == Type::kInlinedTTL || type_ == Type::kBlobTTL; in HasTTL()
89 type_ = static_cast<Type>(*slice.data()); in DecodeFrom()
90 if (type_ >= Type::kUnknown) { in DecodeFrom()
93 "Unknown blob index type: " + ToString(static_cast<char>(type_))); in DecodeFrom()
169 Type type_ = Type::kUnknown;
/rocksdb-6.9/db/
Dtransaction_log_impl.h27 type_(logType), in LogFileImpl()
33 if (type_ == kArchivedLogFile) { in PathName()
41 WalFileType Type() const override { return type_; } in Type()
53 WalFileType type_; variable
/rocksdb-6.9/util/
Dcompression.h396 const CompressionType type_; variable
407 type_(_type), in CompressionInfo()
413 CompressionType type() const { return type_; } in type()
451 const CompressionType type_; variable
456 : context_(_context), dict_(_dict), type_(_type) {} in UncompressionInfo()
460 CompressionType type() const { return type_; } in type()
/rocksdb-6.9/third-party/gtest-1.8.1/fused-src/gtest/
Dgtest-all.cc179 const TestPartResult::Type type_; member in testing::internal::SingleFailureChecker
2176 : results_(results), type_(type), substr_(substr) {} in SingleFailureChecker()
2183 EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_); in ~SingleFailureChecker()
9662 type_(kDynamic), in Mutex()
9674 if (type_ == kDynamic) { in ~Mutex()
9744 if (type_ == kStatic) { in ThreadSafeLazyInit()
Dgtest.h3079 MutexType type_;
19052 : type_(a_type),
19060 Type type() const { return type_; }
19079 bool passed() const { return type_ == kSuccess; }
19082 bool failed() const { return type_ != kSuccess; }
19085 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
19088 bool fatally_failed() const { return type_ == kFatalFailure; }
19091 Type type_;
/rocksdb-6.9/tools/
Ddb_bench_tool.cc5226 std::vector<int> type_; member in ROCKSDB_NAMESPACE::Benchmark::QueryDecider
5242 type_.push_back(range_); in Initiate()
5254 for (int i = 0; i < static_cast<int>(type_.size()); i++) { in GetType()
5255 if (pos < type_[i]) { in GetType()