Home | History | Annotate | Download | only in back-wt

Lines Matching refs:rc

43     int rc;
46 rc = session->open_cursor(session, WT_TABLE_ID2ENTRY, NULL, NULL, &cursor);
47 if(rc){
50 wiredtiger_strerror(rc), rc );
51 return rc;
54 rc = cursor->prev(cursor);
55 switch(rc) {
57 rc = cursor->get_key(cursor, &id);
58 if ( rc ) {
61 wiredtiger_strerror(rc), rc );
62 return rc;
73 wiredtiger_strerror(rc), rc );
76 rc = cursor->close(cursor);
77 if ( rc ) {
80 wiredtiger_strerror(rc), rc );
81 return rc;