Searched defs:next_pgno (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhash_bigkey.c197 db_pgno_t next_pgno; local
223 next_pgno = OADDR_TO_PAGE(DATA_OFF(pagep, (cursorp->pgndx - 1)));
226 pagep = __get_page(hashp, next_pgno, A_RAW);
240 next_pgno = NEXT_PGNO(pagep);
242 pagep = __get_page(hashp, next_pgno, A_RAW);
329 db_pgno_t next_pgno; local
345 next_pgno = NEXT_PGNO(pagep);
347 pagep = __get_page(hashp, next_pgno, A_RAW);
381 db_pgno_t next_pgno; local
413 next_pgno
448 db_pgno_t next_pgno; local
[all...]
H A Dhash_page.c96 db_pgno_t next_pgno; local
125 next_pgno = NEXT_PGNO(cursorp->pagep);
128 cursorp->pagep = __get_page(hashp, next_pgno, A_RAW);
133 cursorp->pgno = next_pgno;
401 db_pgno_t to_find, next_pgno, link_page; local
415 next_pgno = NEXT_PGNO(pagep);
417 assert(next_pgno != INVALID_PGNO);
420 pagep = __get_page(hashp, next_pgno, A_RAW);
450 db_pgno_t next_pgno; local
500 next_pgno
538 db_pgno_t next_pgno; local
644 db_pgno_t next_pgno; local
[all...]
/illumos-gate/usr/src/cmd/sendmail/db/btree/
H A Dbt_cursor.c1218 pgno = cp->page->next_pgno;
1472 if (h->next_pgno == PGNO_INVALID) {
1557 ((cp->page->next_pgno == PGNO_INVALID &&
1640 db_pgno_t pgno, next_pgno, prev_pgno; local
1724 next_pgno = NEXT_PGNO(h);
1727 prev_pgno == PGNO_INVALID && next_pgno == PGNO_INVALID)
1741 * 2d: h != NULL, next_pgno != PGNO_INVALID
1794 bo.pgno = next_pgno;
/illumos-gate/usr/src/cmd/sendmail/db/hash/
H A Dhash_dup.c422 db_pgno_t next_pgno; local
471 for (next_pgno = NEXT_PGNO(hcp->pagep); next_pgno != PGNO_INVALID;
472 next_pgno = NEXT_PGNO(next_pagep)) {
478 __ham_get_page(dbp, next_pgno, &next_pagep)) != 0)
H A Dhash_page.c96 db_pgno_t next_pgno; local
162 next_pgno = NEXT_PGNO(hcp->pagep);
164 if ((ret = __ham_next_cpage(dbc, next_pgno, 0, 0)) != 0)
322 db_pgno_t next_pgno; local
421 next_pgno = BUCKET_TO_PAGE(hcp, hcp->bucket);
426 if ((ret = __ham_next_cpage(dbc, next_pgno, 0, 0)) != 0)
428 got_page: next_pgno = NEXT_PGNO(hcp->pagep);
430 } while (next_pgno != PGNO_INVALID);
1072 db_pgno_t bucket_pgno, next_pgno; local
1155 next_pgno
1248 db_pgno_t next_pgno; local
[all...]
/illumos-gate/usr/src/cmd/sendmail/db/include/
H A Ddb_auto.h46 db_pgno_t next_pgno; member in struct:_db_big_args
H A Dhash_auto.h41 db_pgno_t next_pgno; member in struct:_ham_newpage_args
133 db_pgno_t next_pgno; member in struct:_ham_copypage_args
H A Ddb_page.h135 db_pgno_t next_pgno; /* 16-19: Next page number. */ member in struct:_db_page
167 #define NEXT_PGNO(p) (((PAGE *)p)->next_pgno)
175 * The next_pgno and prev_pgno fields are not maintained for btree and recno
232 * some number of overflow pages, linked by the next_pgno field of the page.
233 * A next_pgno field of PGNO_INVALID flags the end of the overflow item.

Completed in 72 milliseconds