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

/freebsd-11-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.h4750 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
4780 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
4781 int (*xClose)(sqlite3_vtab_cursor*);
4782 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
4784 int (*xNext)(sqlite3_vtab_cursor*);
4785 int (*xEof)(sqlite3_vtab_cursor*);
4786 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
4787 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
4964 ** KEYWORDS: sqlite3_vtab_cursor {virtua
4979 struct sqlite3_vtab_cursor { struct
[all...]
H A Dsqlite3.c5303 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
5333 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5334 int (*xClose)(sqlite3_vtab_cursor*);
5335 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
5337 int (*xNext)(sqlite3_vtab_cursor*);
5338 int (*xEof)(sqlite3_vtab_cursor*);
5339 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
5340 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
5517 ** KEYWORDS: sqlite3_vtab_cursor {virtua
5532 struct sqlite3_vtab_cursor { struct
[all...]
/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3.h6756 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
6786 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
6787 int (*xClose)(sqlite3_vtab_cursor*);
6788 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
6790 int (*xNext)(sqlite3_vtab_cursor*);
6791 int (*xEof)(sqlite3_vtab_cursor*);
6792 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
6793 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
7070 ** KEYWORDS: sqlite3_vtab_cursor {virtua
7085 struct sqlite3_vtab_cursor { struct
[all...]
H A Dshell.c2669 sqlite3_vtab_cursor base; /* Base class - must be first */
2726 static int fsdirOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){
2762 static int fsdirClose(sqlite3_vtab_cursor *cur){
2785 static int fsdirNext(sqlite3_vtab_cursor *cur){
2850 sqlite3_vtab_cursor *cur, /* The cursor */
2914 static int fsdirRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){
2924 static int fsdirEof(sqlite3_vtab_cursor *cur){
2936 sqlite3_vtab_cursor *cur,
3175 /* completion_cursor is a subclass of sqlite3_vtab_cursor which will
3181 sqlite3_vtab_cursor bas
[all...]
H A Dsqlite3.c7819 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
7849 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7850 int (*xClose)(sqlite3_vtab_cursor*);
7851 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
7853 int (*xNext)(sqlite3_vtab_cursor*);
7854 int (*xEof)(sqlite3_vtab_cursor*);
7855 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
7856 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
8133 ** KEYWORDS: sqlite3_vtab_cursor {virtua
8148 struct sqlite3_vtab_cursor { struct
[all...]

Completed in 830 milliseconds