Lines Matching refs:nextid
1425 uint32_t nextid;
1438 nextid = h->rh_nextentity + 1;
1442 if (nextid == 0) {
1443 nextid++;
1449 cur = uu_list_find(h->rh_dataels, NULL, &nextid, NULL);
1453 if (nextid == h->rh_nextentity)
1455 nextid++;
1458 h->rh_nextentity = nextid;
1459 return (nextid);
1465 uint32_t nextid;
1473 nextid = h->rh_nextiter + 1;
1477 if (nextid == 0) {
1478 nextid++;
1484 cur = uu_list_find(h->rh_iters, NULL, &nextid, NULL);
1488 if (nextid == h->rh_nextiter)
1490 nextid++;
1493 h->rh_nextiter = nextid;
1494 return (nextid);
1500 uint32_t nextid;
1504 nextid = ++handle->rh_nextchangeid;
1505 if (nextid == 0)
1506 nextid = ++handle->rh_nextchangeid;
1507 return (nextid);