Searched defs:ClockPath (Results 1 – 1 of 1) sorted by relevance
214 struct ClockPath { struct216 ClockPath() = default; argument220 explicit ClockPath(ClockId clock_id) : last(clock_id) {} in ClockPath() function224 ClockPath(const ClockPath& prefix, ClockId clock_id, SnapshotHash hash) { in ClockPath() function232 bool valid() const { return len > 0; } in valid()233 const ClockGraphEdge& at(uint32_t i) const { in at()238 uint32_t len = 0;239 ClockId last = 0;240 std::array<ClockGraphEdge, kMaxLen> path; // Deliberately uninitialized.