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();
291 ClockTracker(const ClockTracker&) = delete;
292 ClockTracker& operator=(const ClockTracker&) = delete;
Dclock_tracker.cc37 ClockTracker::ClockTracker(TraceProcessorContext* ctx) in ClockTracker() function in perfetto::trace_processor::ClockTracker
41 ClockTracker::~ClockTracker() = default;
43 void ClockTracker::AddSnapshot(const std::vector<ClockValue>& clocks) { in AddSnapshot()
169 ClockTracker::ClockPath ClockTracker::FindPath(ClockId src, ClockId target) { in FindPath()
203 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_tokenizer.cc265 ClockTracker::ClockId converted_clock_id = timestamp_clock_id; in ParsePacket()
267 ClockTracker::IsReservedSeqScopedClockId(converted_clock_id); in ParsePacket()
277 ClockTracker::SeqScopedClockIdToGlobal(seq_id, timestamp_clock_id); in ParsePacket()
450 std::vector<ClockTracker::ClockValue> clocks; in ParseClockSnapshot()
454 static_cast<ClockTracker::ClockId>(evt.primary_trace_clock())); in ParseClockSnapshot()
458 ClockTracker::ClockId clock_id = clk.clock_id(); in ParseClockSnapshot()
459 if (ClockTracker::IsReservedSeqScopedClockId(clk.clock_id())) { in ParseClockSnapshot()
466 clock_id = ClockTracker::SeqScopedClockIdToGlobal(seq_id, clk.clock_id()); in ParseClockSnapshot()
Dproto_trace_parser_unittest.cc218 clock_ = new ClockTracker(&context_); in ProtoTraceParserTest()
277 ClockTracker* clock_;
/external/perfetto/src/trace_processor/types/
Dtrace_processor_context.h32 class ClockTracker; variable
72 std::unique_ptr<ClockTracker> clock_tracker;
/external/perfetto/src/trace_processor/
Dtrace_processor_storage_impl.cc48 context_.clock_tracker.reset(new ClockTracker(&context_)); in TraceProcessorStorageImpl()