Lines Matching defs:next
540 xmlNodePtr child, next;
543 for (child = top->xmlChildrenNode; child != NULL; child = next) {
544 next = child->next;
548 next = child->next;
558 xmlNodePtr root, child, next;
561 for (child = root->xmlChildrenNode; child != NULL; child = next) {
562 next = child->next;
566 next = child->next;
1723 zone_fsopt_t *last, *this, *next;
1728 next = this->zone_fsopt_next;
1730 tabptr->zone_fs_options = next;
1732 last->zone_fsopt_next = next;
1744 zone_fsopt_t *this, *next;
1746 for (this = list; this != NULL; this = next) {
1747 next = this->zone_fsopt_next;
1782 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
1866 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
1960 options = options->next) {
2129 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2249 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2470 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2544 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2646 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2720 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2994 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3107 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3267 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3275 val = val->next) {
3360 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3449 struct zone_rctlvaltab *last, *this, *next;
3459 next = this->zone_rctlval_next;
3461 tabptr->zone_rctl_valptr = next;
3463 last->zone_rctlval_next = next;
3866 for (cur = handle->zone_dh_cur; cur != NULL; cur = cur->next)
3893 cur = cur->next;
3897 tmp = cur->next;
4653 for (; cur != NULL; cur = cur->next)
4688 options = options->next) {
4696 handle->zone_dh_cur = cur->next;
4724 for (; cur != NULL; cur = cur->next)
4758 handle->zone_dh_cur = cur->next;
4786 for (; cur != NULL; cur = cur->next)
4800 handle->zone_dh_cur = cur->next;
4829 for (; cur != NULL; cur = cur->next)
4844 for (val = cur->xmlChildrenNode; val != NULL; val = val->next) {
4862 handle->zone_dh_cur = cur->next;
4890 for (; cur != NULL; cur = cur->next)
4916 handle->zone_dh_cur = cur->next;
4944 for (; cur != NULL; cur = cur->next)
4965 handle->zone_dh_cur = cur->next;
5282 * In the next phase, attempt to convert the merged privilege
5933 rctlblk_t *current, *next;
5950 next = alloca(rctlblk_size());
5954 if (getrctl(name, current, next, RCTL_NEXT) != 0)
5957 current = next;
5958 next = tmp;
6328 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6397 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6442 for (; cur != NULL; cur = cur->next)
6456 handle->zone_dh_cur = cur->next;
6504 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6520 val = val->next) {
6660 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6742 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6796 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6865 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6908 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
6936 for (; cur != NULL; cur = cur->next)
6950 handle->zone_dh_cur = cur->next;
6996 for (; cur != NULL; cur = cur->next) {
7064 for (; cur != NULL; cur = cur->next)
7102 handle->zone_dh_cur = cur->next;
7959 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
7994 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
8010 zone_userauths_t *new, **prev, *next;
8013 next = *prev;
8014 while (next) {
8015 if ((strncmp(next->user, user, MAXUSERNAME) == 0) &&
8016 (strncmp(next->zonename, zonename,
8024 prev = &next->next;
8025 next = *prev;
8033 new->next = NULL;
8042 zone_userauths_t *new, **prev, *next;
8045 next = *prev;
8047 while (next) {
8049 strncmp(next->user, user, MAXUSERNAME) == 0) &&
8051 (strncmp(next->zonename, zonename, ZONENAME_MAX) == 0))) {
8052 new = next;
8053 *prev = next->next;
8054 next = *prev;
8061 prev = &next->next;
8062 next = *prev;