Home
last modified time | relevance | path

Searched defs:Vtab (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/operators/
H A Detm_decode_trace_vtable.h28 struct Vtab : sqlite::Module<EtmDecodeTraceVtable>::Vtab { struct
29 explicit Vtab(TraceStorage* in_storage) : storage(in_storage) {} in Vtab() argument
30 TraceStorage* storage;
H A Dwindow_operator.h53 struct Vtab : sqlite::Module<WindowOperatorModule>::Vtab { struct
54 sqlite::ModuleStateManager<WindowOperatorModule>::PerVtabState* state;
H A Dcounter_mipmap_operator.h76 struct Vtab : sqlite::Module<CounterMipmapOperator>::Vtab { struct
77 sqlite::ModuleStateManager<CounterMipmapOperator>::PerVtabState* state;
H A Dslice_mipmap_operator.h76 struct Vtab : sqlite::Module<SliceMipmapOperator>::Vtab { struct
77 sqlite::ModuleStateManager<SliceMipmapOperator>::PerVtabState* state;
H A Dspan_join_operator.h408 struct Vtab : public sqlite3_vtab { struct
409 sqlite::ModuleStateManager<SpanJoinOperatorModule>::PerVtabState* state;
/aosp_15_r20/external/perfetto/src/trace_processor/sqlite/
H A Ddb_sqlite_table.h75 struct Vtab : public sqlite::Module<DbSqliteModule>::Vtab { struct
76 sqlite::ModuleStateManager<DbSqliteModule>::PerVtabState* state;
77 int best_index_num = 0;
78 std::string table_name;
H A Dstats_table.h32 struct Vtab : sqlite::Module<StatsModule>::Vtab { struct
33 TraceStorage* storage = nullptr;
H A Dsql_stats_table.h33 struct Vtab : sqlite::Module<SqlStatsModule>::Vtab { struct
34 TraceStorage* storage = nullptr;
/aosp_15_r20/external/perfetto/src/trace_processor/perfetto_sql/engine/
H A Druntime_table_function.h77 struct Vtab : sqlite::Module<RuntimeTableFunctionModule>::Vtab { struct
78 sqlite::ModuleStateManager<RuntimeTableFunctionModule>::PerVtabState* state;
79 std::optional<SqliteEngine::PreparedStatement> reusable_stmt;
H A Dtable_pointer_module.h67 struct Vtab : sqlite::Module<TablePointerModule>::Vtab {}; struct
/aosp_15_r20/external/perfetto/src/trace_processor/sqlite/bindings/
H A Dsqlite_module.h62 using Vtab = sqlite3_vtab; member