Searched refs:fts1Hash (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1_hash.h21 typedef struct fts1Hash fts1Hash; typedef in typeref:struct:fts1Hash
32 struct fts1Hash { struct
76 void sqlite3Fts1HashInit(fts1Hash*, int keytype, int copyKey);
77 void *sqlite3Fts1HashInsert(fts1Hash*, const void *pKey, int nKey, void *pData);
78 void *sqlite3Fts1HashFind(const fts1Hash*, const void *pKey, int nKey);
79 void sqlite3Fts1HashClear(fts1Hash*);
93 ** fts1Hash h;
H A Dfts1_hash.c52 void sqlite3Fts1HashInit(fts1Hash *pNew, int keyClass, int copyKey){
69 void sqlite3Fts1HashClear(fts1Hash *pH){
162 fts1Hash *pH, /* The complete hash table */
189 static void rehash(fts1Hash *pH, int new_size){
213 const fts1Hash *pH, /* The pH to be searched */
241 fts1Hash *pH, /* The pH containing "elem" */
278 void *sqlite3Fts1HashFind(const fts1Hash *pH, const void *pKey, int nKey){
308 fts1Hash *pH, /* The hash table to insert into */
H A Dfts1.c2970 static int buildTerms(fulltext_vtab *v, fts1Hash *terms, sqlite_int64 iDocid,
3083 static int insertTerms(fulltext_vtab *v, fts1Hash *terms, sqlite_int64 iRowid,
3096 static int deleteTerms(fulltext_vtab *v, fts1Hash *pTerms, sqlite_int64 iRowid){
3116 sqlite_int64 *piRowid, fts1Hash *pTerms){
3127 static int index_delete(fulltext_vtab *v, sqlite_int64 iRow, fts1Hash *pTerms){
3136 sqlite3_value **pValues, fts1Hash *pTerms){
3154 fts1Hash terms; /* maps term string -> PosList */

Completed in 97 milliseconds