Home
last modified time | relevance | path

Searched refs:AsyncTrackSetTracker (Results 1 – 6 of 6) sorted by relevance

/external/perfetto/src/trace_processor/importers/proto/
Dasync_track_set_tracker.cc25 AsyncTrackSetTracker::AsyncTrackSetTracker(TraceProcessorContext* context) in AsyncTrackSetTracker() function in perfetto::trace_processor::AsyncTrackSetTracker
28 AsyncTrackSetTracker::TrackSetId AsyncTrackSetTracker::InternGlobalTrackSet( in InternGlobalTrackSet()
45 AsyncTrackSetTracker::TrackSetId AsyncTrackSetTracker::InternAndroidSet( in InternAndroidSet()
66 AsyncTrackSetTracker::TrackSetId AsyncTrackSetTracker::InternFrameTimelineSet( in InternFrameTimelineSet()
87 TrackId AsyncTrackSetTracker::Begin(TrackSetId id, int64_t cookie) { in Begin()
105 TrackId AsyncTrackSetTracker::End(TrackSetId id, int64_t cookie) { in End()
123 TrackId AsyncTrackSetTracker::Scoped(TrackSetId id, int64_t ts, int64_t dur) { in Scoped()
146 AsyncTrackSetTracker::TrackState&
147 AsyncTrackSetTracker::GetOrCreateTrackForCookie(TrackSet& set, int64_t cookie) { in GetOrCreateTrackForCookie()
178 TrackId AsyncTrackSetTracker::CreateTrackForSet(const TrackSet& set) { in CreateTrackForSet()
Dasync_track_set_tracker.h56 class AsyncTrackSetTracker {
60 explicit AsyncTrackSetTracker(TraceProcessorContext* context);
61 ~AsyncTrackSetTracker() = default;
166 AsyncTrackSetTracker::TrackSet set; in CreateUnnestableTrackSetForTesting()
168 set.type = AsyncTrackSetTracker::TrackSetType::kAndroid; in CreateUnnestableTrackSetForTesting()
Dasync_track_set_tracker_unittest.cc35 context_.async_track_set_tracker.reset(new AsyncTrackSetTracker(&context_)); in AsyncTrackSetTrackerUnittest()
48 AsyncTrackSetTracker* tracker_ = nullptr;
50 AsyncTrackSetTracker::TrackSetId unnestable_id_;
51 AsyncTrackSetTracker::TrackSetId legacy_unnestable_id_;
Dframe_timeline_event_parser.h45 using TrackSetId = AsyncTrackSetTracker::TrackSetId;
/external/perfetto/src/trace_processor/types/
Dtrace_processor_context.h30 class AsyncTrackSetTracker; variable
73 std::unique_ptr<AsyncTrackSetTracker> async_track_set_tracker;
/external/perfetto/src/trace_processor/
Dtrace_processor_storage_impl.cc50 context_.async_track_set_tracker.reset(new AsyncTrackSetTracker(&context_)); in TraceProcessorStorageImpl()