Home
last modified time | relevance | path

Searched refs:logs_with_prep_ (Results 1 – 2 of 2) sorted by relevance

/rocksdb-6.9/db/
Dlogs_with_prep_tracker.cc26 auto rit = logs_with_prep_.rbegin(); in MarkLogAsContainingPrepSection()
30 for (; rit != logs_with_prep_.rend() && rit->log >= log; ++rit) { in MarkLogAsContainingPrepSection()
39 logs_with_prep_.insert(rit.base(), {log, 1}); in MarkLogAsContainingPrepSection()
45 auto it = logs_with_prep_.begin(); in FindMinLogContainingOutstandingPrep()
47 for (; it != logs_with_prep_.end();) { in FindMinLogContainingOutstandingPrep()
62 it = logs_with_prep_.erase(it); in FindMinLogContainingOutstandingPrep()
Dlogs_with_prep_tracker.h31 size_t TEST_LogsWithPrepSize() { return logs_with_prep_.size(); } in TEST_LogsWithPrepSize()
44 std::vector<LogCnt> logs_with_prep_; variable