Home
last modified time | relevance | path

Searched refs:ClockTracker (Results 1 – 7 of 7) sorted by relevance

/external/perfetto/src/trace_processor/importers/common/
Dclock_tracker.h111 class ClockTracker {
137 explicit ClockTracker(TraceProcessorContext*);
138 virtual ~ClockTracker();
293 ClockTracker(const ClockTracker&) = delete;
294 ClockTracker& operator=(const ClockTracker&) = delete;
Dclock_tracker.cc38 ClockTracker::ClockTracker(TraceProcessorContext* ctx) in ClockTracker() function in perfetto::trace_processor::ClockTracker
42 ClockTracker::~ClockTracker() = default;
44 uint32_t ClockTracker::AddSnapshot(const std::vector<ClockValue>& clocks) { in AddSnapshot()
170 ClockTracker::ClockPath ClockTracker::FindPath(ClockId src, ClockId target) { in FindPath()
204 base::Optional<int64_t> ClockTracker::ConvertSlowpath(ClockId src_clock_id, in ConvertSlowpath()
Dclock_tracker_unittest.cc48 ClockTracker ct_{&context_};
193 ClockTracker::ClockId c64_1 = ct_.SeqScopedClockIdToGlobal(1, 64); in TEST_F()
194 ClockTracker::ClockId c65_1 = ct_.SeqScopedClockIdToGlobal(1, 65); in TEST_F()
195 ClockTracker::ClockId c66_1 = ct_.SeqScopedClockIdToGlobal(1, 66); in TEST_F()
196 ClockTracker::ClockId c66_2 = ct_.SeqScopedClockIdToGlobal(2, 64); in TEST_F()
260 ClockTracker::ClockId src; in TEST_F()
261 ClockTracker::ClockId tgt; in TEST_F()
/external/perfetto/src/trace_processor/importers/proto/
Dproto_trace_reader.cc180 ClockTracker::ClockId converted_clock_id = timestamp_clock_id; in ParsePacket()
182 ClockTracker::IsReservedSeqScopedClockId(converted_clock_id); in ParsePacket()
192 ClockTracker::SeqScopedClockIdToGlobal(seq_id, timestamp_clock_id); in ParsePacket()
356 std::vector<ClockTracker::ClockValue> clocks; in ParseClockSnapshot()
360 static_cast<ClockTracker::ClockId>(evt.primary_trace_clock())); in ParseClockSnapshot()
364 ClockTracker::ClockId clock_id = clk.clock_id(); in ParseClockSnapshot()
365 if (ClockTracker::IsReservedSeqScopedClockId(clk.clock_id())) { in ParseClockSnapshot()
372 clock_id = ClockTracker::SeqScopedClockIdToGlobal(seq_id, clk.clock_id()); in ParseClockSnapshot()
Dproto_trace_parser_unittest.cc253 clock_ = new ClockTracker(&context_); in ProtoTraceParserTest()
307 ClockTracker* clock_;
/external/perfetto/src/trace_processor/types/
Dtrace_processor_context.h33 class ClockTracker; variable
78 std::unique_ptr<ClockTracker> clock_tracker;
/external/perfetto/src/trace_processor/
Dtrace_processor_storage_impl.cc56 context_.clock_tracker.reset(new ClockTracker(&context_)); in TraceProcessorStorageImpl()