Searched refs:bt_cursor (Results 1 – 11 of 11) sorted by relevance
/titanic_41/usr/src/lib/krb5/plugins/kdb/db2/libdb2/recno/ |
H A D | rec_seq.c | 87 if (F_ISSET(&t->bt_cursor, CURS_INIT)) { 88 nrec = t->bt_cursor.rcursor + 1; 96 if (F_ISSET(&t->bt_cursor, CURS_INIT)) { 97 if ((nrec = t->bt_cursor.rcursor - 1) == 0) 124 F_SET(&t->bt_cursor, CURS_INIT); 125 t->bt_cursor.rcursor = nrec;
|
H A D | rec_delete.c | 93 if (!F_ISSET(&t->bt_cursor, CURS_INIT)) 97 status = rec_rdelete(t, t->bt_cursor.rcursor - 1); 99 --t->bt_cursor.rcursor;
|
H A D | rec_put.c | 112 if (!F_ISSET(&t->bt_cursor, CURS_INIT)) 114 nrec = t->bt_cursor.rcursor; 174 t->bt_cursor.rcursor = nrec;
|
H A D | rec_close.c | 147 scursor = t->bt_cursor.rcursor; 179 t->bt_cursor.rcursor = scursor;
|
/titanic_41/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/ |
H A D | bt_put.c | 108 if (F_ISSET(&t->bt_cursor, CURS_INIT) && 109 !F_ISSET(&t->bt_cursor, 163 if ((h = mpool_get(t->bt_mp, t->bt_cursor.pg.pgno, 0)) == NULL) 165 idx = t->bt_cursor.pg.index; 230 if (F_ISSET(&t->bt_cursor, CURS_INIT) && 231 !F_ISSET(&t->bt_cursor, CURS_ACQUIRE) && 232 t->bt_cursor.pg.pgno == h->pgno && t->bt_cursor.pg.index >= idx) 233 ++t->bt_cursor.pg.index;
|
H A D | bt_delete.c | 98 c = &t->bt_cursor; 110 if (__bt_stkacq(t, &h, &t->bt_cursor)) 489 if (F_ISSET(&t->bt_cursor, CURS_INIT) && 490 !F_ISSET(&t->bt_cursor, CURS_ACQUIRE) && 491 t->bt_cursor.pg.pgno == h->pgno && t->bt_cursor.pg.index == idx && 519 if (F_ISSET(&t->bt_cursor, CURS_INIT) && 520 !F_ISSET(&t->bt_cursor, CURS_ACQUIRE) && 521 t->bt_cursor.pg.pgno == h->pgno && t->bt_cursor.pg.index > idx) 522 --t->bt_cursor.pg.index; 556 c = &t->bt_cursor;
|
H A D | bt_close.c | 89 if (t->bt_cursor.key.data != NULL) { 90 free(t->bt_cursor.key.data); 91 t->bt_cursor.key.size = 0; 92 t->bt_cursor.key.data = NULL;
|
H A D | bt_seq.c | 134 if (F_ISSET(&t->bt_cursor, CURS_INIT)) { 287 c = &t->bt_cursor; 511 if (t->bt_cursor.key.data != NULL) { 512 free(t->bt_cursor.key.data); 513 t->bt_cursor.key.size = 0; 514 t->bt_cursor.key.data = NULL; 516 F_CLR(&t->bt_cursor, CURS_ACQUIRE | CURS_AFTER | CURS_BEFORE); 519 t->bt_cursor.pg.pgno = pgno; 520 t->bt_cursor.pg.index = idx; 521 F_SET(&t->bt_cursor, CURS_INIT);
|
H A D | btree.h | 327 CURSOR bt_cursor; /* cursor */ member
|
H A D | bt_split.c | 714 c = &t->bt_cursor;
|
/titanic_41/usr/src/cmd/sendmail/db/ |
H A D | Makefile | 40 OBJS= bt_compare.o bt_conv.o bt_curadj.o bt_cursor.o bt_delete.o bt_open.o \
|