Lines Matching refs:next

545 	xmlNodePtr child, next;
548 for (child = top->xmlChildrenNode; child != NULL; child = next) {
549 next = child->next;
553 next = child->next;
563 xmlNodePtr root, child, next;
566 for (child = root->xmlChildrenNode; child != NULL; child = next) {
567 next = child->next;
571 next = child->next;
1728 zone_fsopt_t *last, *this, *next;
1733 next = this->zone_fsopt_next;
1735 tabptr->zone_fs_options = next;
1737 last->zone_fsopt_next = next;
1749 zone_fsopt_t *this, *next;
1751 for (this = list; this != NULL; this = next) {
1752 next = this->zone_fsopt_next;
1787 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
1871 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
1965 options = options->next) {
2134 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2254 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2475 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2549 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2652 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2726 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2802 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2879 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3154 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3267 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3427 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3435 val = val->next) {
3520 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3609 struct zone_rctlvaltab *last, *this, *next;
3619 next = this->zone_rctlval_next;
3621 tabptr->zone_rctl_valptr = next;
3623 last->zone_rctlval_next = next;
4026 for (cur = handle->zone_dh_cur; cur != NULL; cur = cur->next)
4053 cur = cur->next;
4057 tmp = cur->next;
4813 for (; cur != NULL; cur = cur->next)
4848 options = options->next) {
4856 handle->zone_dh_cur = cur->next;
4884 for (; cur != NULL; cur = cur->next)
4918 handle->zone_dh_cur = cur->next;
4946 for (; cur != NULL; cur = cur->next)
4960 handle->zone_dh_cur = cur->next;
4989 for (; cur != NULL; cur = cur->next)
5004 for (val = cur->xmlChildrenNode; val != NULL; val = val->next) {
5022 handle->zone_dh_cur = cur->next;
5050 for (; cur != NULL; cur = cur->next)
5076 handle->zone_dh_cur = cur->next;
5104 for (; cur != NULL; cur = cur->next)
5125 handle->zone_dh_cur = cur->next;
5442 * In the next phase, attempt to convert the merged privilege
6093 rctlblk_t *current, *next;
6110 next = alloca(rctlblk_size());
6114 if (getrctl(name, current, next, RCTL_NEXT) != 0)
6117 current = next;
6118 next = tmp;
6488 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6557 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6602 for (; cur != NULL; cur = cur->next)
6616 handle->zone_dh_cur = cur->next;
6664 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6680 val = val->next) {
6820 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6902 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6956 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
7025 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
7068 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
7101 for (; cur != NULL; cur = cur->next) {
7132 handle->zone_dh_cur = cur->next;
7151 for (; cur != NULL; cur = cur->next)
7165 handle->zone_dh_cur = cur->next;
7211 for (; cur != NULL; cur = cur->next) {
7279 for (; cur != NULL; cur = cur->next)
7317 handle->zone_dh_cur = cur->next;
8174 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
8209 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
8225 zone_userauths_t *new, **prev, *next;
8228 next = *prev;
8229 while (next) {
8230 if ((strncmp(next->user, user, MAXUSERNAME) == 0) &&
8231 (strncmp(next->zonename, zonename,
8239 prev = &next->next;
8240 next = *prev;
8248 new->next = NULL;
8257 zone_userauths_t *new, **prev, *next;
8260 next = *prev;
8262 while (next) {
8264 strncmp(next->user, user, MAXUSERNAME) == 0) &&
8266 (strncmp(next->zonename, zonename, ZONENAME_MAX) == 0))) {
8267 new = next;
8268 *prev = next->next;
8269 next = *prev;
8276 prev = &next->next;
8277 next = *prev;