Home
last modified time | relevance | path

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

/external/perfetto/src/trace_processor/importers/proto/
Dproto_trace_parser_unittest.cc368 const auto& raw = context_.storage->raw_table(); in TEST_F()
418 const auto& raw = storage_->raw_table(); in TEST_F()
2366 const auto& raw_table = storage_->raw_table(); in TEST_F() local
2367 EXPECT_EQ(raw_table.row_count(), 1u); in TEST_F()
2368 EXPECT_EQ(raw_table.ts()[0], 1010000); in TEST_F()
2369 EXPECT_EQ(raw_table.name()[0], in TEST_F()
2371 EXPECT_EQ(raw_table.cpu()[0], 0u); in TEST_F()
2372 EXPECT_EQ(raw_table.utid()[0], 1u); in TEST_F()
2373 EXPECT_EQ(raw_table.arg_set_id()[0], 1u); in TEST_F()
2464 const auto& raw_table = storage_->raw_table(); in TEST_F() local
[all …]
/external/python/cpython2/Lib/
Dsymtable.py39 def __init__(self, raw_table, filename): argument
40 self._table = raw_table
/external/python/cpython3/Lib/
Dsymtable.py39 def __init__(self, raw_table, filename): argument
40 self._table = raw_table
/external/perfetto/src/trace_processor/sqlite/
Dsqlite_raw_table.cc516 &context.context->storage->raw_table(), nullptr}), in SqliteRawTable()
556 const auto& raw = storage_->raw_table(); in SerializeToString()
584 const auto& raw = storage_->raw_table(); in SerializePrefix()
/external/perfetto/src/trace_processor/
Dexport_json.cc1134 const auto& events = storage_->raw_table(); in ConvertLegacyRawEventToJson()
1220 const auto& events = storage_->raw_table(); in ExportRawEvents()
/external/perfetto/src/trace_processor/storage/
Dtrace_storage.h455 const tables::RawTable& raw_table() const { return raw_table_; } in raw_table() function