Lines Matching refs:nextid
1479 uint32_t nextid;
1492 nextid = h->rh_nextentity + 1;
1496 if (nextid == 0) {
1497 nextid++;
1503 cur = uu_list_find(h->rh_dataels, NULL, &nextid, NULL);
1507 if (nextid == h->rh_nextentity)
1509 nextid++;
1512 h->rh_nextentity = nextid;
1513 return (nextid);
1519 uint32_t nextid;
1527 nextid = h->rh_nextiter + 1;
1531 if (nextid == 0) {
1532 nextid++;
1538 cur = uu_list_find(h->rh_iters, NULL, &nextid, NULL);
1542 if (nextid == h->rh_nextiter)
1544 nextid++;
1547 h->rh_nextiter = nextid;
1548 return (nextid);
1554 uint32_t nextid;
1558 nextid = ++handle->rh_nextchangeid;
1559 if (nextid == 0)
1560 nextid = ++handle->rh_nextchangeid;
1561 return (nextid);