| /rocksdb-6.9/monitoring/ |
| D | in_memory_stats_history.h | 29 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);
|
| D | persistent_stats_history.h | 43 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);
|
| D | in_memory_stats_history.cc | 39 uint64_t end_time) { in AdvanceIteratorByTime() argument 43 db_impl_->FindStatsByTime(start_time, end_time, &time_, &stats_map_); in AdvanceIteratorByTime()
|
| D | persistent_stats_history.cc | 122 uint64_t end_time) { in AdvanceIteratorByTime() argument 145 if (time_ > end_time) { in AdvanceIteratorByTime()
|
| /rocksdb-6.9/tools/advisor/advisor/ |
| D | db_stats_fetcher.py | 200 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/ |
| D | block_cache_trace_analyzer.cc | 414 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/ |
| D | transaction_lock_mgr.cc | 319 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/ |
| D | cache_bench.cc | 183 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/ |
| D | db_impl.cc | 784 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()
|
| D | db_impl.h | 360 uint64_t start_time, uint64_t end_time, 855 bool FindStatsByTime(uint64_t start_time, uint64_t end_time,
|
| /rocksdb-6.9/db/ |
| D | db_test.cc | 1023 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()
|