Lines Matching defs:sqlite3_index_info

5715 typedef struct sqlite3_index_info sqlite3_index_info;
5743 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5772 ** KEYWORDS: sqlite3_index_info
5774 ** The sqlite3_index_info structure and its substructures is used as part
5823 struct sqlite3_index_info {
5853 ** [sqlite3_index_info].aConstraint[].op field. Each value represents
11144 sqlite3_index_info *pVtabIdx; /* Virtual table index to use */
11192 sqlite3_index_info *pIdxInfo; /* Index info for n-th source table */
104661 sqlite3_index_info **ppIdxInfo; /* Index information passed to xBestIndex */
106075 ** Two routines for printing the content of an sqlite3_index_info
106081 static void TRACE_IDX_INPUTS(sqlite3_index_info *p){
106099 static void TRACE_IDX_OUTPUTS(sqlite3_index_info *p){
106470 ** Allocate and populate an sqlite3_index_info structure. It is the
106474 static sqlite3_index_info *allocateIndexInfo(WhereBestIdx *p){
106486 sqlite3_index_info *pIdxInfo;
106504 ** the sqlite3_index_info structure.
106518 /* Allocate the sqlite3_index_info structure
106529 /* Initialize the structure. The sqlite3_index_info structure contains
106581 ** method of the virtual table with the sqlite3_index_info pointer passed
106586 ** part of the sqlite3_index_info structure is left populated.
106592 static int vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p){
106630 ** the sqlite3_index_info structure that is used to communicate with
106634 ** same virtual table. The sqlite3_index_info structure is created
106636 ** invocations. The sqlite3_index_info structure is also used when
106638 ** routine takes care of freeing the sqlite3_index_info structure after
106646 sqlite3_index_info *pIdxInfo;
106662 /* If the sqlite3_index_info structure has not been previously
106673 /* At this point, the sqlite3_index_info structure that pIdxInfo points
108076 sqlite3_index_info *pIdxInfo = 0;
108502 sqlite3_index_info *pVtabIdx = pLevel->plan.u.pVtabIdx;
108600 sqlite3_index_info *pVtabIdx = pLevel->plan.u.pVtabIdx;
109315 sqlite3_index_info *pInfo = pWInfo->a[i].pIdxInfo;
120711 static int fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){
124799 sqlite3_index_info *pInfo
128410 sqlite3_index_info *pInfo
137687 ** the constraint in sqlite3_index_info.aConstraintUsage[] with
137707 static int rtreeBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){