Searched refs:ClockGraphEdge (Results 1 – 2 of 2) sorted by relevance
/external/perfetto/src/trace_processor/importers/common/ |
D | clock_tracker.h | 210 using ClockGraphEdge = std::tuple<ClockId, ClockId, SnapshotHash>; variable 228 path[prefix.len] = ClockGraphEdge{prefix.last, clock_id, hash}; in ClockPath() 233 const ClockGraphEdge& at(uint32_t i) const { in at() 240 std::array<ClockGraphEdge, kMaxLen> path; // Deliberately uninitialized. 307 std::set<ClockGraphEdge> graph_;
|
D | clock_tracker.cc | 136 auto begin = graph_.lower_bound(ClockGraphEdge{clock_id, 0, 0}); in AddSnapshot() 137 auto end = graph_.lower_bound(ClockGraphEdge{clock_id + 1, 0, 0}); in AddSnapshot() 194 ClockGraphEdge(cur_clock_id, 0, 0)); in FindPath() 239 const ClockGraphEdge edge = path.at(i); in ConvertSlowpath()
|