Lines Matching refs:cur
125 static int schemaClose(sqlite3_vtab_cursor *cur){ in schemaClose() argument
126 schema_cursor *pCur = (schema_cursor *)cur; in schemaClose()
137 static int schemaColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){ in schemaColumn() argument
138 schema_cursor *pCur = (schema_cursor *)cur; in schemaColumn()
156 static int schemaRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ in schemaRowid() argument
157 schema_cursor *pCur = (schema_cursor *)cur; in schemaRowid()
168 static int schemaEof(sqlite3_vtab_cursor *cur){ in schemaEof() argument
169 schema_cursor *pCur = (schema_cursor *)cur; in schemaEof()
176 static int schemaNext(sqlite3_vtab_cursor *cur){ in schemaNext() argument
178 schema_cursor *pCur = (schema_cursor *)cur; in schemaNext()
179 schema_vtab *pVtab = (schema_vtab *)(cur->pVtab); in schemaNext()