Searched defs:ClockPath (Results 1 – 1 of 1) sorted by relevance
215 struct ClockPath { struct217 ClockPath() = default; argument221 explicit ClockPath(ClockId clock_id) : last(clock_id) {} in ClockPath() argument225 ClockPath(const ClockPath& prefix, ClockId clock_id, SnapshotHash hash) { in ClockPath() function233 bool valid() const { return len > 0; } in valid()234 const ClockGraphEdge& at(uint32_t i) const { in at()239 uint32_t len = 0;240 ClockId last = 0;241 std::array<ClockGraphEdge, kMaxLen> path; // Deliberately uninitialized.