Home
last modified time | relevance | path

Searched refs:prepared_section_completed_ (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/db/
Dlogs_with_prep_tracker.cc14 auto it = prepared_section_completed_.find(log); in MarkLogAsHavingPrepSectionFlushed()
15 if (UNLIKELY(it == prepared_section_completed_.end())) { in MarkLogAsHavingPrepSectionFlushed()
16 prepared_section_completed_[log] = 1; in MarkLogAsHavingPrepSectionFlushed()
51 auto completed_it = prepared_section_completed_.find(min_log); in FindMinLogContainingOutstandingPrep()
52 if (completed_it == prepared_section_completed_.end() || in FindMinLogContainingOutstandingPrep()
56 assert(completed_it != prepared_section_completed_.end() && in FindMinLogContainingOutstandingPrep()
58 prepared_section_completed_.erase(completed_it); in FindMinLogContainingOutstandingPrep()
Dlogs_with_prep_tracker.h29 return prepared_section_completed_.size(); in TEST_PreparedSectionCompletedSize()
59 std::unordered_map<uint64_t, uint64_t> prepared_section_completed_; variable
/rocksdb-6.9/
DHISTORY.md495 * Fix a leak in prepared_section_completed_ where the zeroed entries would not removed from the map.