Searched refs:sqlite3_vtab_cursor (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_intarray.c48 sqlite3_vtab_cursor base; /* Base class */
102 static int intarrayOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
108 *ppCursor = (sqlite3_vtab_cursor *)pCur;
117 static int intarrayClose(sqlite3_vtab_cursor *cur){
126 static int intarrayColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){
138 static int intarrayRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){
144 static int intarrayEof(sqlite3_vtab_cursor *cur){
153 static int intarrayNext(sqlite3_vtab_cursor *cur){
163 sqlite3_vtab_cursor *pVtabCursor,
H A Dtest_schema.c60 sqlite3_vtab_cursor base;
106 static int schemaOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
112 *ppCursor = (sqlite3_vtab_cursor *)pCur;
121 static int schemaClose(sqlite3_vtab_cursor *cur){
133 static int schemaColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){
152 static int schemaRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){
164 static int schemaEof(sqlite3_vtab_cursor *cur){
172 static int schemaNext(sqlite3_vtab_cursor *cur){
244 sqlite3_vtab_cursor *pVtabCursor,
H A Dtest_tclvar.c39 sqlite3_vtab_cursor base;
77 static int tclvarOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
87 static int tclvarClose(sqlite3_vtab_cursor *cur){
131 static int tclvarNext(sqlite3_vtab_cursor *cur){
152 sqlite3_vtab_cursor *pVtabCursor,
185 static int tclvarColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){
217 static int tclvarRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){
222 static int tclvarEof(sqlite3_vtab_cursor *cur){
H A Dtest_wholenumber.c35 sqlite3_vtab_cursor base; /* Base class - must be first */
68 static int wholenumberOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){
80 static int wholenumberClose(sqlite3_vtab_cursor *cur){
89 static int wholenumberNext(sqlite3_vtab_cursor *cur){
99 sqlite3_vtab_cursor *cur,
111 static int wholenumberRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){
121 static int wholenumberEof(sqlite3_vtab_cursor *cur){
145 sqlite3_vtab_cursor *pVtabCursor,
H A Dtest_stat.c111 sqlite3_vtab_cursor base;
198 static int statOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
219 *ppCursor = (sqlite3_vtab_cursor *)pCsr;
248 static int statClose(sqlite3_vtab_cursor *pCursor){
365 static int statNext(sqlite3_vtab_cursor *pCursor){
485 static int statEof(sqlite3_vtab_cursor *pCursor){
491 sqlite3_vtab_cursor *pCursor,
502 sqlite3_vtab_cursor *pCursor,
536 static int statRowid(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){
H A Dtest_fuzzer.c171 sqlite3_vtab_cursor base; /* Base class - must be first */
263 static int fuzzerOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
328 static int fuzzerClose(sqlite3_vtab_cursor *cur){
597 static int fuzzerNext(sqlite3_vtab_cursor *cur){
663 sqlite3_vtab_cursor *pVtabCursor,
699 static int fuzzerColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){
720 static int fuzzerRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){
730 static int fuzzerEof(sqlite3_vtab_cursor *cur){
H A Dsqlite.h.in4561 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor;
4591 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
4592 int (*xClose)(sqlite3_vtab_cursor*);
4593 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
4595 int (*xNext)(sqlite3_vtab_cursor*);
4596 int (*xEof)(sqlite3_vtab_cursor*);
4597 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
4598 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
4770 ** KEYWORDS: sqlite3_vtab_cursor {virtua
[all...]
H A Dtest8.c89 sqlite3_vtab_cursor base;
551 static int echoOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
557 *ppCursor = (sqlite3_vtab_cursor *)pCur;
564 static int echoClose(sqlite3_vtab_cursor *cur){
578 static int echoEof(sqlite3_vtab_cursor *cur){
585 static int echoNext(sqlite3_vtab_cursor *cur){
609 static int echoColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){
629 static int echoRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){
662 sqlite3_vtab_cursor *pVtabCursor,
H A Drecover.c1601 sqlite3_vtab_cursor base;
1607 static int recoverOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
1658 *ppCursor = (sqlite3_vtab_cursor*)pCursor;
1662 static int recoverClose(sqlite3_vtab_cursor *cur){
1710 static int recoverNext(sqlite3_vtab_cursor *pVtabCursor){
1736 sqlite3_vtab_cursor *pVtabCursor,
1762 static int recoverEof(sqlite3_vtab_cursor *pVtabCursor){
1768 static int recoverColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){
1848 static int recoverRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){
H A DvdbeInt.h59 sqlite3_vtab_cursor *pVtabCursor; /* The cursor for a virtual table */
H A Dtest_osinst.c812 sqlite3_vtab_cursor base; /* Base class */
928 static int vlogOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
941 static int vlogClose(sqlite3_vtab_cursor *pCursor){
956 static int vlogNext(sqlite3_vtab_cursor *pCursor){
1007 static int vlogEof(sqlite3_vtab_cursor *pCursor){
1014 sqlite3_vtab_cursor *pCursor,
1025 sqlite3_vtab_cursor *pCursor,
1056 static int vlogRowid(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){
H A Dvdbe.c5513 sqlite3_vtab_cursor *pVtabCursor;
5525 /* Initialize sqlite3_vtab_cursor base class */
5567 sqlite3_vtab_cursor *pVtabCursor;
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_aux.c30 sqlite3_vtab_cursor base; /* Base class used by SQLite core */
190 static int fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){
199 *ppCsr = (sqlite3_vtab_cursor *)pCsr;
206 static int fts3auxCloseMethod(sqlite3_vtab_cursor *pCursor){
238 static int fts3auxNextMethod(sqlite3_vtab_cursor *pCursor){
333 sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */
392 static int fts3auxEofMethod(sqlite3_vtab_cursor *pCursor){
401 sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */
429 sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */
H A Dfts3Int.h162 sqlite3_vtab_cursor base; /* Base class used by SQLite core */
H A Dfts3.c1105 static int fts3OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){
1106 sqlite3_vtab_cursor *pCsr; /* Allocated cursor */
1114 *ppCsr = pCsr = (sqlite3_vtab_cursor *)sqlite3_malloc(sizeof(Fts3Cursor));
1126 static int fts3CloseMethod(sqlite3_vtab_cursor *pCursor){
2994 static int fts3NextMethod(sqlite3_vtab_cursor *pCursor){
3040 sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */
3067 memset(&pCursor[1], 0, sizeof(Fts3Cursor)-sizeof(sqlite3_vtab_cursor));
3124 static int fts3EofMethod(sqlite3_vtab_cursor *pCursor){
3134 static int fts3RowidMethod(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){
3154 sqlite3_vtab_cursor *pCurso
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h4566 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
4596 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
4597 int (*xClose)(sqlite3_vtab_cursor*);
4598 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
4600 int (*xNext)(sqlite3_vtab_cursor*);
4601 int (*xEof)(sqlite3_vtab_cursor*);
4602 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
4603 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
4775 ** KEYWORDS: sqlite3_vtab_cursor {virtua
4790 struct sqlite3_vtab_cursor { struct
[all...]
H A Dsqlite3.c5109 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
5139 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5140 int (*xClose)(sqlite3_vtab_cursor*);
5141 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5143 int (*xNext)(sqlite3_vtab_cursor*);
5144 int (*xEof)(sqlite3_vtab_cursor*);
5145 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
5146 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
5318 ** KEYWORDS: sqlite3_vtab_cursor {virtua
5333 struct sqlite3_vtab_cursor { struct
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.h5285 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
5315 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5316 int (*xClose)(sqlite3_vtab_cursor*);
5317 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5319 int (*xNext)(sqlite3_vtab_cursor*);
5320 int (*xEof)(sqlite3_vtab_cursor*);
5321 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
5322 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
5513 ** KEYWORDS: sqlite3_vtab_cursor {virtua
5528 struct sqlite3_vtab_cursor { struct
[all...]
H A Dsqlite3.c5400 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
5430 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5431 int (*xClose)(sqlite3_vtab_cursor*);
5432 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5434 int (*xNext)(sqlite3_vtab_cursor*);
5435 int (*xEof)(sqlite3_vtab_cursor*);
5436 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
5437 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
5628 ** KEYWORDS: sqlite3_vtab_cursor {virtua
5643 struct sqlite3_vtab_cursor { struct
[all...]
/external/sqlite/dist/
H A Dsqlite3.h5285 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
5315 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5316 int (*xClose)(sqlite3_vtab_cursor*);
5317 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5319 int (*xNext)(sqlite3_vtab_cursor*);
5320 int (*xEof)(sqlite3_vtab_cursor*);
5321 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
5322 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
5513 ** KEYWORDS: sqlite3_vtab_cursor {virtua
5528 struct sqlite3_vtab_cursor { struct
[all...]
H A Dsqlite3.c5400 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
5430 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5431 int (*xClose)(sqlite3_vtab_cursor*);
5432 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5434 int (*xNext)(sqlite3_vtab_cursor*);
5435 int (*xEof)(sqlite3_vtab_cursor*);
5436 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
5437 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
5628 ** KEYWORDS: sqlite3_vtab_cursor {virtua
5643 struct sqlite3_vtab_cursor { struct
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c575 sqlite3_vtab_cursor base;
979 static int fulltextOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
989 static int fulltextClose(sqlite3_vtab_cursor *pCursor){
999 static int fulltextNext(sqlite3_vtab_cursor *pCursor){
1227 static int fulltextFilter(sqlite3_vtab_cursor *pCursor,
1263 static int fulltextEof(sqlite3_vtab_cursor *pCursor){
1268 static int fulltextColumn(sqlite3_vtab_cursor *pCursor,
1280 static int fulltextRowid(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){
H A Dfts1.c1106 sqlite3_vtab_cursor base; /* Base class used by SQLite core */
2142 static int fulltextOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
2524 static int fulltextClose(sqlite3_vtab_cursor *pCursor){
2537 static int fulltextNext(sqlite3_vtab_cursor *pCursor){
2878 sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */
2928 static int fulltextEof(sqlite3_vtab_cursor *pCursor){
2939 static int fulltextColumn(sqlite3_vtab_cursor *pCursor,
2960 static int fulltextRowid(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c211 sqlite3_vtab_cursor base;
802 static int rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
812 *ppCursor = (sqlite3_vtab_cursor *)pCsr;
839 static int rtreeClose(sqlite3_vtab_cursor *cur){
855 static int rtreeEof(sqlite3_vtab_cursor *cur){
1084 static int rtreeNext(sqlite3_vtab_cursor *pVtabCursor){
1129 static int rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){
1142 static int rtreeColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){
1234 sqlite3_vtab_cursor *pVtabCursor,
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c2064 sqlite3_vtab_cursor base; /* Base class used by SQLite core */
3181 static int fulltextOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
3550 static int fulltextClose(sqlite3_vtab_cursor *pCursor){
3562 static int fulltextNext(sqlite3_vtab_cursor *pCursor){
3989 sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */
4067 static int fulltextEof(sqlite3_vtab_cursor *pCursor){
4078 static int fulltextColumn(sqlite3_vtab_cursor *pCursor,
4099 static int fulltextRowid(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){

Completed in 1021 milliseconds

12