Home
last modified time | relevance | path

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

/rocksdb-6.9/db/
Dwrite_controller.cc62 auto time_now = NowMicrosMonotonic(env); in GetDelay() local
67 if (last_refill_time_ > time_now) { in GetDelay()
68 sleep_debt = last_refill_time_ - time_now; in GetDelay()
70 time_since_last_refill = time_now - last_refill_time_; in GetDelay()
78 last_refill_time_ = time_now; in GetDelay()
92 last_refill_time_ = time_now + kRefillInterval; in GetDelay()
105 last_refill_time_ = time_now + sleep_amount; in GetDelay()
/rocksdb-6.9/monitoring/
Dperf_step_timer.h35 start_ = time_now(); in Start()
39 uint64_t time_now() { in time_now() function
49 uint64_t now = time_now(); in Measure()
57 uint64_t duration = time_now() - start_; in Stop()