Searched refs:nextpg (Results 1 – 12 of 12) sorted by relevance
/titanic_41/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/ |
H A D | bt_overflow.c | 115 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 D | bt_delete.c | 157 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 D | bt_page.c | 68 h->nextpg = t->bt_free; 97 t->bt_free = h->nextpg;
|
H A D | bt_split.c | 364 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 D | bt_conv.c | 83 M_32_SWAP(h->nextpg); 192 M_32_SWAP(h->nextpg);
|
H A D | bt_search.c | 115 h->nextpg != P_INVALID && 170 if ((e.page = mpool_get(t->bt_mp, h->nextpg, 0)) == NULL)
|
H A D | bt_put.c | 236 if (h->nextpg == P_INVALID) { 301 if (t->bt_cur.page->nextpg != P_INVALID)
|
H A D | btree.h | 85 db_pgno_t nextpg; /* right sibling */ member
|
H A D | bt_seq.c | 349 pg = h->nextpg; 482 pg = h->nextpg;
|
H A D | bt_debug.c | 232 (void)fprintf(tracefp, "\tprev %2d next %2d", h->prevpg, h->nextpg);
|
H A D | bt_open.c | 385 root->prevpg = root->nextpg = P_INVALID;
|
/titanic_41/usr/src/lib/libscf/common/ |
H A D | midlevel.c | 1793 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 …]
|