Searched defs:NanoSeconds (Results 1 – 2 of 2) sorted by relevance
102 struct NanoSeconds : std::chrono::nanoseconds { struct103 NanoSeconds() : std::chrono::nanoseconds(0) {} in NanoSeconds() argument104 NanoSeconds(double d) : std::chrono::nanoseconds(static_cast<int64>(d)) {} in NanoSeconds() function105 NanoSeconds(const std::chrono::nanoseconds& d) in NanoSeconds() function111 MicroSeconds asMicroSeconds() const { in asMicroSeconds()114 MilliSeconds asMilliSeconds() const { in asMilliSeconds()117 static NanoSeconds infinity() { in infinity()
61 using NanoSeconds = std::chrono::duration<int64_t, std::nano>; in clientWait() typedef