Searched refs:sqlite3_index_info (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.h | 7293 typedef struct sqlite3_index_info sqlite3_index_info; typedef 7321 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); 7457 struct sqlite3_index_info { struct 9911 SQLITE_API const char *sqlite3_vtab_collation(sqlite3_index_info*,int); 10005 SQLITE_API int sqlite3_vtab_distinct(sqlite3_index_info*); 10078 SQLITE_API int sqlite3_vtab_in(sqlite3_index_info*, int iCons, int bHandle); 10168 SQLITE_API int sqlite3_vtab_rhs_value(sqlite3_index_info*, int, sqlite3_value **ppVal);
|
H A D | sqlite3ext.h | 297 const char *(*vtab_collation)(sqlite3_index_info*,int); 349 int (*vtab_rhs_value)(sqlite3_index_info*,int,sqlite3_value**); 350 int (*vtab_distinct)(sqlite3_index_info*); 351 int (*vtab_in)(sqlite3_index_info*,int,int);
|
H A D | shell.c | 6100 sqlite3_index_info *pIdxInfo in seriesBestIndex() 8056 sqlite3_index_info *pIdxInfo in fsdirBestIndex() 8600 sqlite3_index_info *pIdxInfo in completionBestIndex() 10697 sqlite3_index_info *pIdxInfo in zipfileBestIndex() 12370 static int expertBestIndex(sqlite3_vtab *pVtab, sqlite3_index_info *pIdxInfo){ in expertBestIndex() 15694 static int dbdataBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdx){ in dbdataBestIndex()
|
H A D | sqlite3.c | 7606 typedef struct sqlite3_index_info sqlite3_index_info; typedef 7634 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); 7770 struct sqlite3_index_info { struct 10224 SQLITE_API const char *sqlite3_vtab_collation(sqlite3_index_info*,int); 10318 SQLITE_API int sqlite3_vtab_distinct(sqlite3_index_info*); 10391 SQLITE_API int sqlite3_vtab_in(sqlite3_index_info*, int iCons, int bHandle); 10481 SQLITE_API int sqlite3_vtab_rhs_value(sqlite3_index_info*, int, sqlite3_value **ppVal); 105948 sqlite3_index_info *pIdxInfo 136730 const char *(*vtab_collation)(sqlite3_index_info*,int); 136782 int (*vtab_rhs_value)(sqlite3_index_info*,int,sqlite3_value**); [all …]
|