Home
last modified time | relevance | path

Searched defs:ClockPath (Results 1 – 1 of 1) sorted by relevance

/external/perfetto/src/trace_processor/importers/common/
Dclock_tracker.h257 struct ClockPath { struct
259 ClockPath() = default; argument
263 explicit ClockPath(ClockId clock_id) : last(clock_id) {} in ClockPath() argument
267 ClockPath(const ClockPath& prefix, ClockId clock_id, SnapshotHash hash) { in ClockPath() argument
275 bool valid() const { return len > 0; } in valid()
276 const ClockGraphEdge& at(uint32_t i) const { in at()
281 uint32_t len = 0;
282 ClockId last = 0;
283 std::array<ClockGraphEdge, kMaxLen> path; // Deliberately uninitialized.