Home
last modified time | relevance | path

Searched defs:fulltext_vtab (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts1/
Dfulltext.c562 typedef struct fulltext_vtab { struct
572 } fulltext_vtab; argument
Dfts1.c946 typedef struct fulltext_vtab fulltext_vtab; typedef
1084 struct fulltext_vtab { struct
1085 sqlite3_vtab base; /* Base class used by SQLite core */
1086 sqlite3 *db; /* The database connection */
1087 const char *zDb; /* logical database name */
1088 const char *zName; /* virtual table name */
1089 int nColumn; /* number of columns in virtual table */
1090 char **azColumn; /* column names. malloced */
1091 char **azContentColumn; /* column names in content table; malloced */
1092 sqlite3_tokenizer *pTokenizer; /* tokenizer for inserts and queries */
[all …]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
Dfts2.c1865 typedef struct fulltext_vtab fulltext_vtab; typedef
2019 struct fulltext_vtab { struct
2020 sqlite3_vtab base; /* Base class used by SQLite core */
2021 sqlite3 *db; /* The database connection */
2022 const char *zDb; /* logical database name */
2023 const char *zName; /* virtual table name */
2024 int nColumn; /* number of columns in virtual table */
2025 char **azColumn; /* column names. malloced */
2026 char **azContentColumn; /* column names in content table; malloced */
2027 sqlite3_tokenizer *pTokenizer; /* tokenizer for inserts and queries */
[all …]