Searched refs:SleepForNanos (Results 1 – 3 of 3) sorted by relevance
44 void SleepForNanos(int64 ns);45 inline void SleepForMicros(int64 us) { SleepForNanos(us * 1000); } in SleepForMicros()46 inline void SleepForMillis(int64 ms) { SleepForNanos(ms * 1000000); } in SleepForMillis()47 inline void SleepForSeconds(int64 s) { SleepForNanos(s * 1000000000); } in SleepForSeconds()
31 void SleepForNanos(int64 ns) { absl::SleepFor(absl::Nanoseconds(ns)); } in SleepForNanos() function
137 profiler::SleepForNanos(sleep_duration_ns); in ProfilerSession()