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

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/
H A Dsqlite3.h4129 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
4160 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
4161 int (*xClose)(sqlite3_vtab_cursor*);
4162 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
4164 int (*xNext)(sqlite3_vtab_cursor*);
4165 int (*xEof)(sqlite3_vtab_cursor*);
4166 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
4167 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
4328 ** KEYWORDS: sqlite3_vtab_cursor {virtua
4344 struct sqlite3_vtab_cursor { struct
[all...]
H A Dshell.c301 sqlite3_vtab_cursor base;
358 static int schemaOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
365 *ppCursor = (sqlite3_vtab_cursor *)pCur;
374 static int schemaClose(sqlite3_vtab_cursor *cur){
405 static int schemaColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){
424 static int schemaRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){
436 static int schemaEof(sqlite3_vtab_cursor *cur){
444 static int schemaNext(sqlite3_vtab_cursor *cur){
517 sqlite3_vtab_cursor *pVtabCursor,
H A Dsqlite3.c4653 typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef in typeref:struct:sqlite3_vtab_cursor
4684 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
4685 int (*xClose)(sqlite3_vtab_cursor*);
4686 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
4688 int (*xNext)(sqlite3_vtab_cursor*);
4689 int (*xEof)(sqlite3_vtab_cursor*);
4690 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
4691 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
4852 ** KEYWORDS: sqlite3_vtab_cursor {virtua
4868 struct sqlite3_vtab_cursor { struct
[all...]

Completed in 411 milliseconds