Home | History | Annotate | Download | only in dist

Lines Matching refs: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 */
104316 ** Two routines for printing the content of an sqlite3_index_info
104322 static void TRACE_IDX_INPUTS(sqlite3_index_info *p){
104340 static void TRACE_IDX_OUTPUTS(sqlite3_index_info *p){
104710 ** Allocate and populate an sqlite3_index_info structure. It is the
104714 static sqlite3_index_info *allocateIndexInfo(
104727 sqlite3_index_info *pIdxInfo;
104745 ** the sqlite3_index_info structure.
104758 /* Allocate the sqlite3_index_info structure
104769 /* Initialize the structure. The sqlite3_index_info structure contains
104818 ** method of the virtual table with the sqlite3_index_info pointer passed
104823 ** part of the sqlite3_index_info structure is left populated.
104829 static int vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p){
104867 ** the sqlite3_index_info structure that is used to communicate with
104871 ** same virtual table. The sqlite3_index_info structure is created
104873 ** invocations. The sqlite3_index_info structure is also used when
104875 ** routine takes care of freeing the sqlite3_index_info structure after
104886 sqlite3_index_info **ppIdxInfo /* Index information passed to xBestIndex */
104889 sqlite3_index_info *pIdxInfo;
104904 /* If the sqlite3_index_info structure has not been previously
104915 /* At this point, the sqlite3_index_info structure that pIdxInfo points
105937 sqlite3_index_info *p = 0;
106345 sqlite3_index_info *pVtabIdx = pLevel->plan.u.pVtabIdx;
106430 sqlite3_index_info *pVtabIdx = pLevel->plan.u.pVtabIdx;
107073 sqlite3_index_info
107431 sqlite3_index_info **pp = &pWInfo->a[j].pIdxInfo;
118064 static int fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){
121992 sqlite3_index_info *pInfo
131494 ** the constraint in sqlite3_index_info.aConstraintUsage[] with
131514 static int rtreeBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){