OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Fts3Table
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3Int.h
35
**
Fts3Table
.pendingTerms hash table. Normally, the hash table is
101
typedef struct
Fts3Table
Fts3Table
;
119
struct
Fts3Table
{
284
int sqlite3Fts3PendingTermsFlush(
Fts3Table
*);
285
void sqlite3Fts3PendingTermsClear(
Fts3Table
*);
286
int sqlite3Fts3Optimize(
Fts3Table
*);
289
int sqlite3Fts3SegReaderPending(
Fts3Table
*,const char*,int,int,Fts3SegReader**);
292
int sqlite3Fts3AllSegdirs(
Fts3Table
*, int, sqlite3_stmt **);
293
int sqlite3Fts3ReadLock(
Fts3Table
*);
[
all
...]
fts3_write.c
202
Fts3Table
*p, /* Virtual table handle */
276
Fts3Table
*pTab, /* FTS3 table handle */
306
Fts3Table
*pTab, /* Fts3 table handle */
313
Fts3Table
*pTab, /* Fts3 table handle */
330
Fts3Table
*p, /* The FTS3 table */
363
int sqlite3Fts3ReadLock(
Fts3Table
*p){
393
int sqlite3Fts3AllSegdirs(
Fts3Table
*p, int iLevel, sqlite3_stmt **ppStmt){
523
Fts3Table
*p, /* Table into which text will be inserted */
596
static int fts3PendingTermsDocid(
Fts3Table
*p, sqlite_int64 iDocid){
614
void sqlite3Fts3PendingTermsClear(
Fts3Table
*p)
[
all
...]
fts3_aux.c
26
Fts3Table
*pFts3Tab;
90
nByte = sizeof(Fts3auxTable) + sizeof(
Fts3Table
) + nDb + nFts3 + 2;
95
p->pFts3Tab = (
Fts3Table
*)&p[1];
115
Fts3Table
*pFts3 = p->pFts3Tab;
207
Fts3Table
*pFts3 = ((Fts3auxTable *)pCursor->pVtab)->pFts3Tab;
240
Fts3Table
*pFts3 = ((Fts3auxTable *)pCursor->pVtab)->pFts3Tab;
340
Fts3Table
*pFts3 = ((Fts3auxTable *)pCursor->pVtab)->pFts3Tab;
fts3_snippet.c
585
Fts3Table
*pTab, /* FTS3 table snippet comes from */
659
Fts3Table
*pTab = (
Fts3Table
*)pCsr->base.pVtab;
901
Fts3Table
*pTab,
945
Fts3Table
*pTab,
[
all
...]
fts3.c
441
Fts3Table
*p = (
Fts3Table
*)pVtab;
494
Fts3Table
*p = (
Fts3Table
*)pVtab;
505
** memory associated with the
Fts3Table
structure and return SQLITE_OK.
521
static void fts3DeclareVtab(int *pRc,
Fts3Table
*p){
559
static int fts3CreateTables(
Fts3Table
*p){
618
static void fts3DatabasePageSize(int *pRc,
Fts3Table
*p){
751
static char *fts3ReadExprList(
Fts3Table
*p, const char *zFunc, int *pRc){
790
static char *fts3WriteExprList(
Fts3Table
*p, const char *zFunc, int *pRc)
[
all
...]
Completed in 32 milliseconds