Home
last modified time | relevance | path

Searched refs:nextpg (Results 1 – 12 of 12) sorted by relevance

/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/
H A Dbt_overflow.c113 for (p = *buf;; p = (char *)p + nb, pg = h->nextpg) {
161 h->nextpg = h->prevpg = P_INVALID;
169 last->nextpg = h->pgno;
220 pg = h->nextpg;
H A Dbt_delete.c155 recno_t nextpg, prevpg; local
179 if ((nextpg = h->nextpg) == P_INVALID)
214 if ((h = mpool_get(t->bt_mp, nextpg, 0)) == NULL)
604 if (idx == NEXTINDEX(h) - 1 && h->nextpg != P_INVALID) {
605 if ((pg = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
644 if (h->nextpg != P_INVALID) {
645 if ((pg = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
653 pg->nextpg = h->nextpg;
H A Dbt_page.c66 h->nextpg = t->bt_free;
95 t->bt_free = h->nextpg;
H A Dbt_split.c362 r->nextpg = h->nextpg;
376 if (h->nextpg == P_INVALID && *skip == NEXTINDEX(h)) {
380 h->nextpg = r->pgno;
397 l->nextpg = r->pgno;
404 if (h->nextpg != P_INVALID) {
405 if ((tp = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL) {
468 l->nextpg = r->pgno;
470 l->prevpg = r->nextpg = P_INVALID;
H A Dbt_conv.c81 M_32_SWAP(h->nextpg);
190 M_32_SWAP(h->nextpg);
H A Dbt_search.c113 h->nextpg != P_INVALID &&
168 if ((e.page = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
H A Dbt_put.c234 if (h->nextpg == P_INVALID) {
299 if (t->bt_cur.page->nextpg != P_INVALID)
H A Dbt_seq.c347 pg = h->nextpg;
480 pg = h->nextpg;
H A Dbtree.h83 db_pgno_t nextpg; /* right sibling */ member
H A Dbt_debug.c229 (void)fprintf(tracefp, "\tprev %2d next %2d", h->prevpg, h->nextpg);
H A Dbt_open.c383 root->prevpg = root->nextpg = P_INVALID;
/illumos-gate/usr/src/lib/libscf/common/
H A Dmidlevel.c1945 if ((nextpg = malloc(sizeof (*nextpg))) == NULL) { in scf_simple_app_props_get()
1949 nextpg->pg_name = NULL; in scf_simple_app_props_get()
1950 nextpg->pg_next = NULL; in scf_simple_app_props_get()
1952 thispg->pg_next = nextpg; in scf_simple_app_props_get()
1953 thispg = nextpg; in scf_simple_app_props_get()
1956 nextpg = thispg; in scf_simple_app_props_get()
2003 nextprop->pr_pg = nextpg; in scf_simple_app_props_get()
2090 if ((nextpg = malloc(sizeof (*nextpg))) == NULL) { in scf_simple_app_props_get()
2094 nextpg->pg_next = NULL; in scf_simple_app_props_get()
2100 free(nextpg); in scf_simple_app_props_get()
[all …]