Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/
H A Dbt_overflow.c115 for (p = *buf;; p = (char *)p + nb, pg = h->nextpg) {
163 h->nextpg = h->prevpg = P_INVALID;
171 last->nextpg = h->pgno;
222 pg = h->nextpg;
H A Dbt_delete.c157 recno_t nextpg, prevpg; local
181 if ((nextpg = h->nextpg) == P_INVALID)
216 if ((h = mpool_get(t->bt_mp, nextpg, 0)) == NULL)
606 if (idx == NEXTINDEX(h) - 1 && h->nextpg != P_INVALID) {
607 if ((pg = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
646 if (h->nextpg != P_INVALID) {
647 if ((pg = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
655 pg->nextpg = h->nextpg;
H A Dbt_page.c68 h->nextpg = t->bt_free;
97 t->bt_free = h->nextpg;
H A Dbt_split.c364 r->nextpg = h->nextpg;
378 if (h->nextpg == P_INVALID && *skip == NEXTINDEX(h)) {
382 h->nextpg = r->pgno;
399 l->nextpg = r->pgno;
406 if (h->nextpg != P_INVALID) {
407 if ((tp = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL) {
470 l->nextpg = r->pgno;
472 l->prevpg = r->nextpg = P_INVALID;
H A Dbt_conv.c83 M_32_SWAP(h->nextpg);
192 M_32_SWAP(h->nextpg);
H A Dbt_search.c115 h->nextpg != P_INVALID &&
170 if ((e.page = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
H A Dbt_put.c236 if (h->nextpg == P_INVALID) {
301 if (t->bt_cur.page->nextpg != P_INVALID)
H A Dbtree.h85 db_pgno_t nextpg; /* right sibling */ member
H A Dbt_seq.c349 pg = h->nextpg;
482 pg = h->nextpg;
H A Dbt_debug.c232 (void)fprintf(tracefp, "\tprev %2d next %2d", h->prevpg, h->nextpg);
H A Dbt_open.c385 root->prevpg = root->nextpg = P_INVALID;
/titanic_41/usr/src/lib/libscf/common/
H A Dmidlevel.c1793 struct scf_simple_pg *thispg = NULL, *nextpg; in scf_simple_app_props_get() local
1885 if ((nextpg = malloc(sizeof (*nextpg))) == NULL) { in scf_simple_app_props_get()
1889 nextpg->pg_name = NULL; in scf_simple_app_props_get()
1890 nextpg->pg_next = NULL; in scf_simple_app_props_get()
1891 nextpg->pg_proplist = NULL; in scf_simple_app_props_get()
1892 thispg->pg_next = nextpg; in scf_simple_app_props_get()
1893 thispg = nextpg; in scf_simple_app_props_get()
1896 nextpg = thispg; in scf_simple_app_props_get()
1899 if ((nextpg->pg_name = malloc(namelen)) == NULL) { in scf_simple_app_props_get()
1904 if (scf_pg_get_name(pg, nextpg->pg_name, namelen) < 0) { in scf_simple_app_props_get()
[all …]