Lines Matching defs:sqlite3_index_info

5478 typedef struct sqlite3_index_info sqlite3_index_info;
5506 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5535 ** KEYWORDS: sqlite3_index_info
5537 ** The sqlite3_index_info structure and its substructures is used as part
5586 struct sqlite3_index_info {
5616 ** [sqlite3_index_info].aConstraint[].op field. Each value represents
10799 sqlite3_index_info *pVtabIdx; /* Virtual table index to use */
10844 sqlite3_index_info *pIdxInfo; /* Index info for n-th source table */
104280 ** Two routines for printing the content of an sqlite3_index_info
104286 static void TRACE_IDX_INPUTS(sqlite3_index_info *p){
104304 static void TRACE_IDX_OUTPUTS(sqlite3_index_info *p){
104674 ** Allocate and populate an sqlite3_index_info structure. It is the
104678 static sqlite3_index_info *allocateIndexInfo(
104691 sqlite3_index_info *pIdxInfo;
104709 ** the sqlite3_index_info structure.
104722 /* Allocate the sqlite3_index_info structure
104733 /* Initialize the structure. The sqlite3_index_info structure contains
104782 ** method of the virtual table with the sqlite3_index_info pointer passed
104787 ** part of the sqlite3_index_info structure is left populated.
104793 static int vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p){
104831 ** the sqlite3_index_info structure that is used to communicate with
104835 ** same virtual table. The sqlite3_index_info structure is created
104837 ** invocations. The sqlite3_index_info structure is also used when
104839 ** routine takes care of freeing the sqlite3_index_info structure after
104850 sqlite3_index_info **ppIdxInfo /* Index information passed to xBestIndex */
104853 sqlite3_index_info *pIdxInfo;
104868 /* If the sqlite3_index_info structure has not been previously
104879 /* At this point, the sqlite3_index_info structure that pIdxInfo points
105901 sqlite3_index_info *p = 0;
106309 sqlite3_index_info *pVtabIdx = pLevel->plan.u.pVtabIdx;
106394 sqlite3_index_info *pVtabIdx = pLevel->plan.u.pVtabIdx;
107037 sqlite3_index_info *pInfo = pWInfo->a[i].pIdxInfo;
107395 sqlite3_index_info **pp = &pWInfo->a[j].pIdxInfo;
118028 static int fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){
121946 sqlite3_index_info *pInfo
131448 ** the constraint in sqlite3_index_info.aConstraintUsage[] with
131468 static int rtreeBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){