Home
last modified time | relevance | path

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

/external/perfetto/src/trace_processor/importers/proto/
Dasync_track_set_tracker_unittest.cc67 uint32_t row = *storage_->process_track_table().id().IndexOf(begin); in TEST_F()
68 ASSERT_EQ(storage_->process_track_table().upid()[row], 1u); in TEST_F()
69 ASSERT_EQ(storage_->process_track_table().name()[row], in TEST_F()
76 uint32_t row = *storage_->process_track_table().id().IndexOf(end); in TEST_F()
77 ASSERT_EQ(storage_->process_track_table().upid()[row], 1u); in TEST_F()
78 ASSERT_EQ(storage_->process_track_table().name()[row], in TEST_F()
Dproto_trace_parser_unittest.cc1320 EXPECT_EQ(storage_->process_track_table().row_count(), 3u); in TEST_F()
1321 EXPECT_EQ(storage_->process_track_table().upid()[0], 1u); in TEST_F()
1322 EXPECT_EQ(storage_->process_track_table().upid()[1], 1u); in TEST_F()
1323 EXPECT_EQ(storage_->process_track_table().upid()[2], 1u); in TEST_F()
Dtrack_event_parser.cc359 storage_->process_track_table().id().IndexOf(track_id_); in ParseTrackAssociation()
361 upid_ = storage_->process_track_table().upid()[*process_track_row]; in ParseTrackAssociation()
/external/perfetto/src/trace_processor/storage/
Dtrace_storage.h313 const tables::ProcessTrackTable& process_track_table() const { in process_track_table() function
/external/perfetto/src/trace_processor/
Dtrace_processor_impl.cc787 RegisterDbTable(storage->process_track_table()); in TraceProcessorImpl()
Dexport_json.cc830 const auto& process_track = storage_->process_track_table(); in ExportSlices()