Searched defs:Entry (Results 1 – 6 of 6) sorted by relevance
43 struct Entry { struct44 std::string key;45 ValueType type; // kTypeValue, kTypeDeletion, kTypeMerge46 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 <()
17 struct Entry { struct18 Entry() : ptr(nullptr) {} in Entry() argument19 Entry(const Entry& e) : ptr(e.ptr.load(std::memory_order_relaxed)) {} in Entry() argument20 std::atomic<void*> ptr;
419 struct Entry { struct423 std::list<Entry> entries_; // list of partitioned indexes and their keys argument
32 Entry(const std::string& name) : name_(std::move(name)) {} in Entry() function
40 struct Entry { struct41 std::string key;42 std::string value;43 WriteType type;
402 WriteEntry Entry() const override { in Entry() function in ROCKSDB_NAMESPACE::WBWIIteratorImpl