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

/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/etc/c/
H A Dsqlite3.d1371 int function (sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor) xOpen;
1372 int function (sqlite3_vtab_cursor*) xClose;
1373 int function (sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
1375 int function (sqlite3_vtab_cursor*) xNext;
1376 int function (sqlite3_vtab_cursor*) xEof;
1377 int function (sqlite3_vtab_cursor*, sqlite3_context*, int) xColumn;
1378 int function (sqlite3_vtab_cursor*, sqlite3_int64 *pRowid) xRowid;
1481 struct sqlite3_vtab_cursor
/netbsd-current/external/public-domain/sqlite/man/
H A DMakefile214 sqlite3_vtab_cursor.3 \
/netbsd-current/external/public-domain/sqlite/dist/
H A Dsqlite3.h7269 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
7299 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7300 int (*xClose)(sqlite3_vtab_cursor*);
7301 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
7303 int (*xNext)(sqlite3_vtab_cursor*);
7304 int (*xEof)(sqlite3_vtab_cursor*);
7305 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
7306 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
7619 ** KEYWORDS: sqlite3_vtab_cursor {virtua
7634 struct sqlite3_vtab_cursor { struct
[all...]
H A Dshell.c5828 /* series_cursor is a subclass of sqlite3_vtab_cursor which will
5834 sqlite3_vtab_cursor base; /* Base class - must be first */
5893 static int seriesOpen(sqlite3_vtab *pUnused, sqlite3_vtab_cursor **ppCursor){
5906 static int seriesClose(sqlite3_vtab_cursor *cur){
5915 static int seriesNext(sqlite3_vtab_cursor *cur){
5926 sqlite3_vtab_cursor *cur, /* The cursor */
5950 static int seriesRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){
5961 static int seriesEof(sqlite3_vtab_cursor *cur){
5997 sqlite3_vtab_cursor *pVtabCursor,
7654 sqlite3_vtab_cursor bas
[all...]
H A Dsqlite3.c7582 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
7612 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7613 int (*xClose)(sqlite3_vtab_cursor*);
7614 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
7616 int (*xNext)(sqlite3_vtab_cursor*);
7617 int (*xEof)(sqlite3_vtab_cursor*);
7618 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
7619 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
7932 ** KEYWORDS: sqlite3_vtab_cursor {virtua
7947 struct sqlite3_vtab_cursor { struct
[all...]

Completed in 936 milliseconds