Searched defs:ClockPath (Results 1 – 1 of 1) sorted by relevance
210 struct ClockPath { struct212 ClockPath() = default; argument216 explicit ClockPath(ClockId clock_id) : last(clock_id) {} in ClockPath() argument220 ClockPath(const ClockPath& prefix, ClockId clock_id, SnapshotHash hash) { in ClockPath() function228 bool valid() const { return len > 0; } in valid()229 const ClockGraphEdge& at(uint32_t i) const { in at()234 uint32_t len = 0;235 ClockId last = 0;236 std::array<ClockGraphEdge, kMaxLen> path; // Deliberately uninitialized.