Home | History | Annotate | Download | only in fts1

Lines Matching refs:pCursor

989 static int fulltextClose(sqlite3_vtab_cursor *pCursor){
990 fulltext_cursor *c = (fulltext_cursor *) pCursor;
999 static int fulltextNext(sqlite3_vtab_cursor *pCursor){
1000 fulltext_cursor *c = (fulltext_cursor *) pCursor;
1141 sqlite3_tokenizer_cursor *pCursor;
1144 int rc = pModule->xOpen(pTokenizer, zQuery, -1, &pCursor);
1146 pCursor->pTokenizer = pTokenizer;
1152 rc = pModule->xNext(pCursor,
1161 return pModule->xClose(pCursor);
1227 static int fulltextFilter(sqlite3_vtab_cursor *pCursor,
1230 fulltext_cursor *c = (fulltext_cursor *) pCursor;
1260 return fulltextNext(pCursor);
1263 static int fulltextEof(sqlite3_vtab_cursor *pCursor){
1264 fulltext_cursor *c = (fulltext_cursor *) pCursor;
1268 static int fulltextColumn(sqlite3_vtab_cursor *pCursor,
1270 fulltext_cursor *c = (fulltext_cursor *) pCursor;
1280 static int fulltextRowid(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){
1281 fulltext_cursor *c = (fulltext_cursor *) pCursor;
1290 sqlite3_tokenizer_cursor *pCursor;
1295 int rc = pTokenizer->pModule->xOpen(pTokenizer, zText, -1, &pCursor);
1298 pCursor->pTokenizer = pTokenizer;
1300 while( SQLITE_OK==pTokenizer->pModule->xNext(pCursor,
1327 pTokenizer->pModule->xClose(pCursor);