Home
last modified time | relevance | path

Searched refs:end_time (Results 1 – 11 of 11) sorted by relevance

/rocksdb-6.9/monitoring/
Din_memory_stats_history.h29 InMemoryStatsHistoryIterator(uint64_t start_time, uint64_t end_time, in InMemoryStatsHistoryIterator() argument
32 end_time_(end_time), in InMemoryStatsHistoryIterator()
63 void AdvanceIteratorByTime(uint64_t start_time, uint64_t end_time);
Dpersistent_stats_history.h43 PersistentStatsHistoryIterator(uint64_t start_time, uint64_t end_time, in PersistentStatsHistoryIterator() argument
47 end_time_(end_time), in PersistentStatsHistoryIterator()
64 void AdvanceIteratorByTime(uint64_t start_time, uint64_t end_time);
Din_memory_stats_history.cc39 uint64_t end_time) { in AdvanceIteratorByTime() argument
43 db_impl_->FindStatsByTime(start_time, end_time, &time_, &stats_map_); in AdvanceIteratorByTime()
Dpersistent_stats_history.cc122 uint64_t end_time) { in AdvanceIteratorByTime() argument
145 if (time_ > end_time) { in AdvanceIteratorByTime()
/rocksdb-6.9/tools/advisor/advisor/
Ddb_stats_fetcher.py200 self, client, entities, start_time, end_time, key_prefix=None argument
206 self.end_time = end_time
267 self._get_string_in_quotes(self.end_time)
321 self._get_string_in_quotes(self.end_time),
/rocksdb-6.9/tools/block_cache_analyzer/
Dblock_cache_trace_analyzer.cc414 uint64_t end_time = 0; in WriteMissRatioTimeline() local
423 end_time = std::max(end_time, time); in WriteMissRatioTimeline()
446 end_time = std::max(end_time, time); in WriteMissRatioTimeline()
465 for (uint64_t now = start_time; now <= end_time; now++) { in WriteMissRatioTimeline()
494 uint64_t end_time = 0; in WriteMissTimeline() local
500 end_time = std::max(end_time, time); in WriteMissTimeline()
516 end_time = std::max(end_time, time); in WriteMissTimeline()
531 for (uint64_t now = start_time; now <= end_time; now++) { in WriteMissTimeline()
859 uint64_t end_time = 0; in WriteAccessTimeline() local
880 end_time = std::max(end_time, timestamp); in WriteAccessTimeline()
[all …]
/rocksdb-6.9/utilities/transactions/
Dtransaction_lock_mgr.cc319 uint64_t end_time = 0; in AcquireWithTimeout() local
323 end_time = start_time + timeout; in AcquireWithTimeout()
353 if (expire_time_hint > 0 && end_time > 0) { in AcquireWithTimeout()
354 cv_end_time = std::min(expire_time_hint, end_time); in AcquireWithTimeout()
357 } else if (end_time > 0) { in AcquireWithTimeout()
358 cv_end_time = end_time; in AcquireWithTimeout()
/rocksdb-6.9/cache/
Dcache_bench.cc183 uint64_t end_time = env->NowMicros(); in Run() local
184 double elapsed = static_cast<double>(end_time - start_time) * 1e-6; in Run()
/rocksdb-6.9/db/db_impl/
Ddb_impl.cc784 bool DBImpl::FindStatsByTime(uint64_t start_time, uint64_t end_time, in FindStatsByTime() argument
794 if (it != stats_history_.end() && it->first < end_time) { in FindStatsByTime()
806 uint64_t start_time, uint64_t end_time, in GetStatsHistory() argument
813 new PersistentStatsHistoryIterator(start_time, end_time, this)); in GetStatsHistory()
816 new InMemoryStatsHistoryIterator(start_time, end_time, this)); in GetStatsHistory()
Ddb_impl.h360 uint64_t start_time, uint64_t end_time,
855 bool FindStatsByTime(uint64_t start_time, uint64_t end_time,
/rocksdb-6.9/db/
Ddb_test.cc1023 uint64_t start_time, uint64_t end_time) { in CheckColumnFamilyMeta() argument
1066 ASSERT_LE(file_meta_from_cf.file_creation_time, end_time); in CheckColumnFamilyMeta()
1068 ASSERT_LE(file_meta_from_cf.oldest_ancester_time, end_time); in CheckColumnFamilyMeta()
1154 uint64_t end_time = static_cast<uint64_t>(temp_time); in TEST_F() local
1158 CheckColumnFamilyMeta(cf_meta, files_by_level, start_time, end_time); in TEST_F()