Lines Matching refs:sqlite3_index_info

5399 typedef struct sqlite3_index_info sqlite3_index_info;
5427 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5456 ** KEYWORDS: sqlite3_index_info
5458 ** The sqlite3_index_info structure and its substructures is used as part
5511 ** IMPORTANT: The estimatedRows field was added to the sqlite3_index_info
5519 struct sqlite3_index_info {
5551 ** [sqlite3_index_info].aConstraint[].op field. Each value represents
112395 ** Two routines for printing the content of an sqlite3_index_info
112401 static void TRACE_IDX_INPUTS(sqlite3_index_info *p){
112419 static void TRACE_IDX_OUTPUTS(sqlite3_index_info *p){
112622 ** Allocate and populate an sqlite3_index_info structure. It is the
112626 static sqlite3_index_info *allocateIndexInfo(
112639 sqlite3_index_info *pIdxInfo;
112656 ** the sqlite3_index_info structure.
112670 /* Allocate the sqlite3_index_info structure
112680 /* Initialize the structure. The sqlite3_index_info structure contains
112733 ** method of the virtual table with the sqlite3_index_info object that
112738 ** part of the sqlite3_index_info structure is left populated.
112744 static int vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p){
115695 sqlite3_index_info *pIdxInfo;
126861 ** The lower 16-bits of the sqlite3_index_info.idxNum value set by
128312 static void fts3SetEstimatedRows(sqlite3_index_info *pIdxInfo, i64 nRow){
128328 static int fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){
132785 sqlite3_index_info *pInfo
136478 sqlite3_index_info *pInfo
146273 static void setEstimatedRows(sqlite3_index_info *pIdxInfo, i64 nRow){
146295 ** the constraint in sqlite3_index_info.aConstraintUsage[] with
146315 static int rtreeBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){