Home
last modified time | relevance | path

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

/aosp_15_r20/external/perfetto/src/trace_processor/db/
H A Dquery_executor_benchmark.cc432 benchmark::DoNotOptimize(slice_sorted_with_duration.QueryToRowMap(q)); in BM_QEFilterWithArrangement()
439 static_cast<double>(table.table_.QueryToRowMap(q).size()), in BM_QEFilterWithArrangement()
511 benchmark::DoNotOptimize(slice_sorted_with_duration.QueryToRowMap(q)); in BM_QEFilterOrderedArrangement()
518 static_cast<double>(table.table_.QueryToRowMap(q).size()), in BM_QEFilterOrderedArrangement()
534 benchmark::DoNotOptimize(slice_sorted_with_parent_id.QueryToRowMap(q)); in BM_QEFilterNullOrderedArrangement()
541 static_cast<double>(table.table_.QueryToRowMap(q).size()), in BM_QEFilterNullOrderedArrangement()
635 benchmark::DoNotOptimize(slice_sorted_with_duration.QueryToRowMap(q)); in BM_QEDistinctWithArrangement()
642 static_cast<double>(table.table_.QueryToRowMap(q).size()), in BM_QEDistinctWithArrangement()
658 benchmark::DoNotOptimize(slice_sorted_with_duration.QueryToRowMap(q)); in BM_QEDistinctSortedWithArrangement()
665 static_cast<double>(table.table_.QueryToRowMap(q).size()), in BM_QEDistinctSortedWithArrangement()
H A Dtable.cc145 RowMap Table::QueryToRowMap(const Query& q) const { in QueryToRowMap() function in perfetto::trace_processor::Table
210 RowMap rm = QueryToRowMap(q); in Sort()
295 std::vector<uint32_t> index = QueryToRowMap(q).TakeAsIndexVector(); in CreateIndex()
H A Dtable.h146 RowMap QueryToRowMap(const Query&) const;
151 return ApplyAndIterateRows(QueryToRowMap(q)); in QueryToIterator()
/aosp_15_r20/external/perfetto/src/trace_processor/sqlite/
H A Ddb_sqlite_table.cc777 RowMap filter_map = source_table->QueryToRowMap(c->query); in Filter()