Home
last modified time | relevance | path

Searched defs:Entry (Results 1 – 6 of 6) sorted by relevance

/rocksdb-6.9/db/
Ddb_iter_stress_test.cc43 struct Entry { struct
44 std::string key;
45 ValueType type; // kTypeValue, kTypeDeletion, kTypeMerge
46 uint64_t sequence;
47 std::string ikey; // internal key, made from `key`, `sequence` and `type`
48 std::string value;
50 bool visible = true;
52 bool operator<(const Entry& e) const { in operator <()
/rocksdb-6.9/util/
Dthread_local.cc17 struct Entry { struct
18 Entry() : ptr(nullptr) {} in Entry() argument
19 Entry(const Entry& e) : ptr(e.ptr.load(std::memory_order_relaxed)) {} in Entry() argument
20 std::atomic<void*> ptr;
/rocksdb-6.9/table/block_based/
Dindex_builder.h419 struct Entry { struct
423 std::list<Entry> entries_; // list of partitioned indexes and their keys argument
/rocksdb-6.9/include/rocksdb/utilities/
Dobject_registry.h32 Entry(const std::string& name) : name_(std::move(name)) {} in Entry() function
/rocksdb-6.9/utilities/write_batch_with_index/
Dwrite_batch_with_index_test.cc40 struct Entry { struct
41 std::string key;
42 std::string value;
43 WriteType type;
Dwrite_batch_with_index.cc402 WriteEntry Entry() const override { in Entry() function in ROCKSDB_NAMESPACE::WBWIIteratorImpl