Lines Matching refs:cursor
163 ** DB_CURSOR -- Obtain a cursor for sequential access
167 ** cursor -- The address of a cursor pointer.
176 SMDB_CURSOR **cursor, unsigned int flags));
194 ** DB_CURSOR_CLOSE -- Close a cursor
197 ** cursor -- The cursor to close.
204 typedef int (*db_cursor_close_func) __P((SMDB_CURSOR *cursor));
207 ** DB_CURSOR_DEL -- Delete the key/value pair of this cursor
210 ** cursor -- The cursor.
218 typedef int (*db_cursor_del_func) __P((SMDB_CURSOR *cursor,
222 ** DB_CURSOR_GET -- Get the key/value of this cursor.
225 ** cursor -- The cursor.
238 typedef int (*db_cursor_get_func) __P((SMDB_CURSOR *cursor,
253 ** DB_CURSOR_PUT -- Put the key/value at this cursor.
256 ** cursor -- The cursor.
266 typedef int (*db_cursor_put_func) __P((SMDB_CURSOR *cursor,