Searched refs:Fts3HashElem (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
D | fts3_hash.h | 22 typedef struct Fts3HashElem Fts3HashElem; typedef 36 Fts3HashElem *first; /* The first element of the array */ 40 Fts3HashElem *chain; /* Pointer to first entry with this hash */ 50 struct Fts3HashElem { struct 51 Fts3HashElem *next, *prev; /* Next and previous elements in the table */ argument 78 Fts3HashElem *sqlite3Fts3HashFindElem(const Fts3Hash *, const void *, int);
|
D | fts3_hash.c | 75 Fts3HashElem *elem; /* For looping over all elements of the table */ in sqlite3Fts3HashClear() 84 Fts3HashElem *next_elem = elem->next; in sqlite3Fts3HashClear() 169 Fts3HashElem *pNew /* The element to be inserted */ in fts3HashInsertElement() 171 Fts3HashElem *pHead; /* First element already in pEntry */ in fts3HashInsertElement() 198 Fts3HashElem *elem, *next_elem; /* For looping over existing elements */ in fts3Rehash() 220 static Fts3HashElem *fts3FindElementByHash( in fts3FindElementByHash() 226 Fts3HashElem *elem; /* Used to loop thru the element list */ in fts3FindElementByHash() 250 Fts3HashElem* elem, /* The element to be removed from the pH */ in fts3RemoveElementByHash() 282 Fts3HashElem *sqlite3Fts3HashFindElem( in sqlite3Fts3HashFindElem() 304 Fts3HashElem *pElem; /* The element that matches key (if any) */ in sqlite3Fts3HashFind() [all …]
|
D | fts3_write.c | 96 Fts3HashElem **ppNextElem; 569 p->nPendingData -= (pList->nData + nToken + sizeof(Fts3HashElem)); in fts3PendingTermsAdd() 582 p->nPendingData += (pList->nData + nToken + sizeof(Fts3HashElem)); in fts3PendingTermsAdd() 615 Fts3HashElem *pElem; in sqlite3Fts3PendingTermsClear() 927 Fts3HashElem *pElem = *(pReader->ppNextElem); in fts3SegReaderNext() 1216 char *z1 = fts3HashKey(*(Fts3HashElem **)lhs); in fts3CompareElemByTerm() 1217 char *z2 = fts3HashKey(*(Fts3HashElem **)rhs); in fts3CompareElemByTerm() 1218 int n1 = fts3HashKeysize(*(Fts3HashElem **)lhs); in fts3CompareElemByTerm() 1219 int n2 = fts3HashKeysize(*(Fts3HashElem **)rhs); in fts3CompareElemByTerm() 1241 Fts3HashElem *pE; /* Iterator variable */ in sqlite3Fts3SegReaderPending() [all …]
|
/external/chromium_org/third_party/sqlite/ |
D | sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch | 7 + Fts3HashElem *pE; /* Iterator variable */ 8 Fts3HashElem **aElem = 0; /* Array of term hash entries to scan */ 14 - Fts3HashElem *pE = 0; /* Iterator variable */ 22 - Fts3HashElem *pE = fts3HashFindElem(&p->pendingTerms, zTerm, nTerm);
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.c | 113102 typedef struct Fts3HashElem Fts3HashElem; 113116 Fts3HashElem *first; /* The first element of the array */ 113120 Fts3HashElem *chain; /* Pointer to first entry with this hash */ 113130 struct Fts3HashElem { 113131 Fts3HashElem *next, *prev; /* Next and previous elements in the table */ 113158 SQLITE_PRIVATE Fts3HashElem *sqlite3Fts3HashFindElem(const Fts3Hash *, const void *, int); 118436 Fts3HashElem *elem; /* For looping over all elements of the table */ 118445 Fts3HashElem *next_elem = elem->next; 118530 Fts3HashElem *pNew /* The element to be inserted */ 118532 Fts3HashElem *pHead; /* First element already in pEntry */ [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 116342 typedef struct Fts3HashElem Fts3HashElem; 116356 Fts3HashElem *first; /* The first element of the array */ 116360 Fts3HashElem *chain; /* Pointer to first entry with this hash */ 116370 struct Fts3HashElem { 116371 Fts3HashElem *next, *prev; /* Next and previous elements in the table */ 116398 SQLITE_PRIVATE Fts3HashElem *sqlite3Fts3HashFindElem(const Fts3Hash *, const void *, int); 123375 Fts3HashElem *elem; /* For looping over all elements of the table */ 123384 Fts3HashElem *next_elem = elem->next; 123469 Fts3HashElem *pNew /* The element to be inserted */ 123471 Fts3HashElem *pHead; /* First element already in pEntry */ [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 116378 typedef struct Fts3HashElem Fts3HashElem; 116392 Fts3HashElem *first; /* The first element of the array */ 116396 Fts3HashElem *chain; /* Pointer to first entry with this hash */ 116406 struct Fts3HashElem { 116407 Fts3HashElem *next, *prev; /* Next and previous elements in the table */ 116434 SQLITE_PRIVATE Fts3HashElem *sqlite3Fts3HashFindElem(const Fts3Hash *, const void *, int); 123423 Fts3HashElem *elem; /* For looping over all elements of the table */ 123432 Fts3HashElem *next_elem = elem->next; 123517 Fts3HashElem *pNew /* The element to be inserted */ 123519 Fts3HashElem *pHead; /* First element already in pEntry */ [all …]
|