Home
last modified time | relevance | path

Searched refs:StatsTable (Results 1 – 4 of 4) sorted by relevance

/external/perfetto/src/trace_processor/sqlite/
Dstats_table.cc24 StatsTable::StatsTable(sqlite3*, const TraceStorage* storage) in StatsTable() function in perfetto::trace_processor::StatsTable
27 void StatsTable::RegisterTable(sqlite3* db, const TraceStorage* storage) { in RegisterTable()
28 SqliteTable::Register<StatsTable>(db, storage, "stats"); in RegisterTable()
31 util::Status StatsTable::Init(int, const char* const*, Schema* schema) { in Init()
49 std::unique_ptr<SqliteTable::Cursor> StatsTable::CreateCursor() { in CreateCursor()
53 int StatsTable::BestIndex(const QueryConstraints&, BestIndexInfo*) { in BestIndex()
57 StatsTable::Cursor::Cursor(StatsTable* table) in Cursor()
60 int StatsTable::Cursor::Filter(const QueryConstraints&, in Filter()
67 int StatsTable::Cursor::Column(sqlite3_context* ctx, int N) { in Column()
120 int StatsTable::Cursor::Next() { in Next()
[all …]
Dstats_table.h33 class StatsTable : public SqliteTable {
38 Cursor(StatsTable*);
55 StatsTable* table_ = nullptr;
63 StatsTable(sqlite3*, const TraceStorage*);
/external/libchrome/libchrome_tools/patch/
Dshared_memory_posix.patch22 // "name == L"". The exception is in the StatsTable.
/external/perfetto/src/trace_processor/
Dtrace_processor_impl.cc730 StatsTable::RegisterTable(*db_, storage); in TraceProcessorImpl()