Home
last modified time | relevance | path

Searched refs:nextp (Results 1 – 4 of 4) sorted by relevance

/busybox-1.35.0/init/
Dinit.c619 struct init_action *a, **nextp; in new_init_action() local
632 nextp = &G.init_action_list; in new_init_action()
633 while ((a = *nextp) != NULL) { in new_init_action()
641 *nextp = a->next; in new_init_action()
643 while (*nextp != NULL) in new_init_action()
644 nextp = &(*nextp)->next; in new_init_action()
648 nextp = &a->next; in new_init_action()
655 *nextp = a; in new_init_action()
917 struct init_action *a, **nextp; in reload_inittab() local
954 nextp = &G.init_action_list; in reload_inittab()
[all …]
/busybox-1.35.0/networking/
Ddnsd.c120 struct dns_entry **nextp; in parse_conf_file() local
123 nextp = &conf_data; in parse_conf_file()
141 *nextp = m; in parse_conf_file()
142 nextp = &m->next; in parse_conf_file()
Dinterface.c379 struct interface *ife, **nextp, *new; in add_interface() local
393 nextp = ife ? &ife->next : &ilist->int_list; in add_interface()
395 new->next = *nextp; in add_interface()
400 *nextp = new; in add_interface()
/busybox-1.35.0/util-linux/
Dmdev.c354 struct envmatch **nextp = &G.cur_rule.envmatch; in parse_envmatch_pfx() local
368 *nextp = e = xzalloc(sizeof(*e)); in parse_envmatch_pfx()
369 nextp = &e->next; in parse_envmatch_pfx()