Lines Matching refs:next

421 	const char *next;
431 next = origpath;
434 while (*next != '\0') {
436 assert(*next == '/' || *next == '\0');
440 * the next pointer forward skipping past extra "/", "/." and
444 * pointer, copying from next with each advance.
448 while (*next == '/') {
449 if (*(next + 1) != '.') {
450 next++;
454 if (*(next + 2) == '/' || *(next + 2) == '\0') {
455 next += 2;
459 if (*(next + 2) == '.' &&
460 (*(next + 3) == '/' || *(next + 3) == '\0')) {
461 next += 3;
471 next++;
477 /* next has just moved past a slash. cur must do the same. */
481 * Copy until the end of newpath, the next slash, or the end
484 while (cur < eob && *next != '/' && *next != '\0') {
485 *cur = *next;
487 next++;
489 /* Copy the next '/' or '\0'. */
490 *cur = *next;
1033 xmlNodePtr child, next;
1036 for (child = top->xmlChildrenNode; child != NULL; child = next) {
1037 next = child->next;
1041 next = child->next;
1783 prop = prop->next;
1788 prop = prop->next;
1813 res = res->next;
1821 res = res->next;
2265 zone_fsopt_t *last, *this, *next;
2270 next = this->zone_fsopt_next;
2272 tabptr->zone_fs_options = next;
2274 last->zone_fsopt_next = next;
2286 zone_fsopt_t *this, *next;
2288 for (this = list; this != NULL; this = next) {
2289 next = this->zone_fsopt_next;
2325 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2410 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2505 options = options->next) {
2632 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2712 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2873 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
2983 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3354 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3571 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3700 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3808 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3881 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
3985 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
4100 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
4260 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
4268 val = val->next) {
4353 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
4436 struct zone_rctlvaltab *last, *this, *next;
4446 next = this->zone_rctlval_next;
4448 tabptr->zone_rctl_valptr = next;
4450 last->zone_rctlval_next = next;
4828 for (cur = handle->zone_dh_cur; cur != NULL; cur = cur->next)
4855 cur = cur->next;
4859 tmp = cur->next;
5626 for (; cur != NULL; cur = cur->next)
5678 options = options->next) {
5686 handle->zone_dh_cur = cur->next;
5759 handle->zone_dh_cur = cur->next;
5972 handle->zone_dh_cur = cur->next;
6023 handle->zone_dh_cur = cur->next;
6062 for (val = cur->xmlChildrenNode; val != NULL; val = val->next) {
6083 handle->zone_dh_cur = cur->next;
6133 handle->zone_dh_cur = cur->next;
6179 handle->zone_dh_cur = cur->next;
6536 * In the next phase, attempt to convert the merged privilege
7191 rctlblk_t *current, *next;
7208 next = alloca(rctlblk_size());
7212 if (getrctl(name, current, next, RCTL_NEXT) != 0)
7215 current = next;
7216 next = tmp;
7589 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
7658 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
7732 handle->zone_dh_cur = cur->next;
7781 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
7797 val = val->next) {
7937 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
8019 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
8073 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
8143 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
8186 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
8224 handle->zone_dh_cur = cur->next;
9243 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
9278 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
9294 zone_userauths_t *new, **prev, *next;
9297 next = *prev;
9298 while (next) {
9299 if ((strncmp(next->user, user, MAXUSERNAME) == 0) &&
9300 (strncmp(next->zonename, zonename,
9308 prev = &next->next;
9309 next = *prev;
9317 new->next = NULL;
9326 zone_userauths_t *new, **prev, *next;
9329 next = *prev;
9331 while (next) {
9333 strncmp(next->user, user, MAXUSERNAME) == 0) &&
9335 (strncmp(next->zonename, zonename, ZONENAME_MAX) == 0))) {
9336 new = next;
9337 *prev = next->next;
9338 next = *prev;
9345 prev = &next->next;
9346 next = *prev;
9407 zone_storage_t *this, *next;
9409 for (this = tabptr->zone_storage_list; this != NULL; this = next) {
9410 next = this->zone_storage_next;
9419 zone_storage_t *this, *next;
9421 for (this = tabptr->zone_storage_list; this != NULL; this = next) {
9422 next = this->zone_storage_next;
9471 zone_storage_t *last, *this, *next;
9476 next = this->zone_storage_next;
9478 tabptr->zone_storage_list = next;
9480 last->zone_storage_next = next;
9492 zone_storage_t *last, *this, *next;
9497 next = this->zone_storage_next;
9499 tabptr->zone_storage_list = next;
9501 last->zone_storage_next = next;
9582 for (src = cur->xmlChildrenNode; src != NULL; src = src->next) {
9603 for (src = cur->xmlChildrenNode; src != NULL; src = src->next) {
9645 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
9716 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
9788 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
9821 for (cur = cur->xmlChildrenNode; cur != NULL; cur = cur->next) {
9878 handle->zone_dh_cur = cur->next;
9924 handle->zone_dh_cur = cur->next;
10411 for (res = root->children; res != NULL; res = res->next) {
10454 prop = prop->next;
10460 res = res->next;