Lines Matching refs:cur
147 static int stmtClose(sqlite3_vtab_cursor *cur){ in stmtClose() argument
148 stmtCsrReset((stmt_cursor*)cur); in stmtClose()
149 sqlite3_free(cur); in stmtClose()
157 static int stmtNext(sqlite3_vtab_cursor *cur){ in stmtNext() argument
158 stmt_cursor *pCur = (stmt_cursor*)cur; in stmtNext()
170 sqlite3_vtab_cursor *cur, /* The cursor */ in stmtColumn() argument
174 stmt_cursor *pCur = (stmt_cursor*)cur; in stmtColumn()
188 static int stmtRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ in stmtRowid() argument
189 stmt_cursor *pCur = (stmt_cursor*)cur; in stmtRowid()
198 static int stmtEof(sqlite3_vtab_cursor *cur){ in stmtEof() argument
199 stmt_cursor *pCur = (stmt_cursor*)cur; in stmtEof()