Home
last modified time | relevance | path

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

/rocksdb-6.9/db/db_impl/
Ddb_impl.cc713 stats_slice_.size()); in PersistStats()
719 if (stats_slice_.find(stat.first) != stats_slice_.end()) { in PersistStats()
720 uint64_t delta = stat.second - stats_slice_[stat.first]; in PersistStats()
727 std::swap(stats_slice_, stats_map); in PersistStats()
741 stats_slice_.size(), now_seconds); in PersistStats()
750 if (stats_slice_.find(stat.first) != stats_slice_.end()) { in PersistStats()
751 stats_delta[stat.first] = stat.second - stats_slice_[stat.first]; in PersistStats()
757 stats_slice_.size(), now_seconds); in PersistStats()
761 std::swap(stats_slice_, stats_map); in PersistStats()
Ddb_impl.h1866 std::map<std::string, uint64_t> stats_slice_; variable