Home
last modified time | relevance | path

Searched refs:SqliteRawTable (Results 1 – 3 of 3) sorted by relevance

/external/perfetto/src/trace_processor/sqlite/
Dsqlite_raw_table.h48 class SqliteRawTable : public DbSqliteTable {
55 SqliteRawTable(sqlite3*, Context);
56 ~SqliteRawTable() override;
Dsqlite_raw_table.cc512 SqliteRawTable::SqliteRawTable(sqlite3* db, Context context) in SqliteRawTable() function in perfetto::trace_processor::SqliteRawTable
519 auto* thiz = static_cast<SqliteRawTable*>(sqlite3_user_data(ctx)); in __anon9831579b1e02()
527 SqliteRawTable::~SqliteRawTable() = default;
529 void SqliteRawTable::RegisterTable(sqlite3* db, in RegisterTable()
532 SqliteTable::Register<SqliteRawTable, Context>(db, Context{cache, context}, in RegisterTable()
536 void SqliteRawTable::ToSystrace(sqlite3_context* ctx, in ToSystrace()
/external/perfetto/src/trace_processor/
Dtrace_processor_impl.cc737 SqliteRawTable::RegisterTable(*db_, query_cache_.get(), &context_); in TraceProcessorImpl()