Home
last modified time | relevance | path

Searched refs:idxInfo (Results 1 - 4 of 4) sorted by relevance

/developtools/smartperf_host/trace_streamer/src/table/base/
H A Dtable_base.cpp102 module.xBestIndex = [](sqlite3_vtab *pVTab, sqlite3_index_info *idxInfo) { in SetModuleCallbacks()
103 TS_LOGD("xBestIndex: %s %d", static_cast<TableBase *>(pVTab)->name_.c_str(), idxInfo->nConstraint); in SetModuleCallbacks()
104 return static_cast<TableBase *>(pVTab)->BestIndex(idxInfo); in SetModuleCallbacks()
167 int32_t TableBase::BestIndex(sqlite3_index_info *idxInfo) in BestIndex() argument
170 for (int32_t i = 0; i < idxInfo->nConstraint; i++) { in BestIndex()
171 const auto &constraint = idxInfo->aConstraint[i]; in BestIndex()
176 for (int32_t i = 0; i < idxInfo->nOrderBy; i++) { in BestIndex()
177 filterConstraints.AddOrderBy(idxInfo->aOrderBy[i].iColumn, idxInfo->aOrderBy[i].desc); in BestIndex()
180 EstimatedIndexInfo estimate = {idxInfo in BestIndex()
[all...]
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/table/
H A Ddemo_table_base.cpp101 demoModule.xBestIndex = [](sqlite3_vtab *pVTab, sqlite3_index_info *idxInfo) { in SetModuleCallbacks()
102 TS_LOGD("xBestIndex: %s %d", static_cast<DemoTableBase *>(pVTab)->name_.c_str(), idxInfo->nConstraint); in SetModuleCallbacks()
103 return static_cast<DemoTableBase *>(pVTab)->DemoBestIndex(idxInfo); in SetModuleCallbacks()
H A Ddemo_table_base.h119 int32_t DemoBestIndex(sqlite3_index_info *idxInfo);
/developtools/smartperf_host/trace_streamer/src/table/base/include/
H A Dtable_base.h165 int32_t BestIndex(sqlite3_index_info *idxInfo);

Completed in 3 milliseconds