Home
last modified time | relevance | path

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

/aosp_15_r20/external/perfetto/src/trace_processor/importers/common/
H A Dclock_tracker.h250 struct ClockPath { struct
252 ClockPath() = default; argument
256 explicit ClockPath(ClockId clock_id) : last(clock_id) {} in ClockPath() argument
260 ClockPath(const ClockPath& prefix, ClockId clock_id, SnapshotHash hash) { in ClockPath() function
268 bool valid() const { return len > 0; } in valid()
269 const ClockGraphEdge& at(uint32_t i) const { in at()
274 uint32_t len = 0;
275 ClockId last = 0;
276 std::array<ClockGraphEdge, kMaxLen> path; // Deliberately uninitialized.