Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 107) sorted by relevance

12345

/busybox-1.35.0/coreutils/
Duudecode.c227 unsigned cur, next; in bb_b32encode() local
234 next = 0; in bb_b32encode()
236 next = *s++; in bb_b32encode()
237 *p++ = tbl[(cur << 2) + (next >> 6)]; // -----xxx xx------ -------- -------- -------- in bb_b32encode()
238 cur = next & 0x3f; in bb_b32encode()
243 next = 0; in bb_b32encode()
245 next = *s++; in bb_b32encode()
246 *p++ = tbl[(cur << 4) + (next >> 4)]; // -------- -------x xxxx---- -------- -------- in bb_b32encode()
247 cur = next & 0xf; in bb_b32encode()
249 next = 0; in bb_b32encode()
[all …]
Dsync.c63 goto next; in sync_common()
79 next: in sync_common()
/busybox-1.35.0/networking/
Dnameif.c95 struct ethtable_s *next; member
154 char *next; in nameif_parse_selector() local
162 next = skip_non_whitespace(selector); in nameif_parse_selector()
163 if (*next) in nameif_parse_selector()
164 *next++ = '\0'; in nameif_parse_selector()
184 selector = next; in nameif_parse_selector()
199 ch->next = *clist; in prepend_new_eth_table()
285 for (ch = clist; ch; ch = ch->next) { in nameif_main()
310 ch->prev->next = ch->next; in nameif_main()
312 clist = ch->next; in nameif_main()
[all …]
Dtelnetd.c137 struct tsession *next; member
590 G.sessions = ts->next; in free_session()
592 while (t->next != ts) in free_session()
593 t = t->next; in free_session()
594 t->next = ts->next; in free_session()
624 ts = ts->next; in free_session()
653 ts = ts->next; in handle_sigchld()
767 struct tsession *next = ts->next; /* in case we free ts */ in telnetd_main() local
781 ts = next; in telnetd_main()
823 new_ts->next = G.sessions; in telnetd_main()
[all …]
/busybox-1.35.0/libbb/
Dinode_hash.c19 struct ino_dev_hash_bucket_struct *next; member
53 bucket = bucket->next; in is_in_ino_dev_hashtable()
76 bucket->next = ino_dev_hashtable[i]; in add_to_ino_dev_hashtable()
85 ino_dev_hashtable_bucket_t *bucket, *next; in reset_ino_dev_hashtable() local
94 next = bucket->next; in reset_ino_dev_hashtable()
96 bucket = next; in reset_ino_dev_hashtable()
/busybox-1.35.0/procps/
Dpstree.c50 struct proc *next; member
58 struct child *next; member
135 for (walk = G.list; walk; walk = walk->next) in find_proc()
149 new->next = G.list; in new_proc()
163 for (walk = &parent->children; *walk; walk = &(*walk)->next) { in add_child()
170 new->next = *walk; in add_child()
211 walk_a = walk_a->next, walk_b = walk_b->next in tree_equal()
246 CHILD *walk, *next, **scan; in dump_tree() local
304 for (walk = current->children; walk; walk = next) { in dump_tree()
306 next = walk->next; in dump_tree()
[all …]
Dsysctl.c252 char *next = concat_subpath_file(path, entry->d_name); in sysctl_act_recursive() local
253 if (next == NULL) in sysctl_act_recursive()
256 retval |= sysctl_act_recursive((next[0] == '.' && next[1] == '/') ? in sysctl_act_recursive()
257 next + 2 : next); in sysctl_act_recursive()
258 free(next); in sysctl_act_recursive()
/busybox-1.35.0/scripts/kconfig/
Dkxgettext.c44 goto next; in escape()
47 next: in escape()
61 struct file_line *next; member
75 self->next = NULL; in file_line__new()
83 struct message *next; member
105 self->next = NULL; in message__new()
123 m = m->next; in mesage__find()
137 fl->next = self->files; in message__add_file_line()
157 m->next = message__list; in message__add()
178 for (child = menu->list; child != NULL; child = child->next) in menu_build_message_list()
[all …]
Dmenu.c56 last_entry_ptr = &menu->next; in menu_add_entry()
73 last_entry_ptr = &current_menu->next; in menu_end_menu()
165 for (prop = sym->prop; prop; prop = prop->next) { in sym_check_prop()
216 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
231 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
240 for (; prop; prop = prop->next) { in menu_finalize()
256 for (menu = parent->list; menu; menu = menu->next) in menu_finalize()
263 for (menu = parent->next; menu; menu = menu->next) { in menu_finalize()
268 goto next; in menu_finalize()
279 next: in menu_finalize()
[all …]
Dutil.c16 for (file = file_list; file; file = file->next) { in file_lookup()
24 file->next = file_list; in file_lookup()
41 for (file = file_list; file; file = file->next) { in file_write_dep()
42 if (file->next) in file_write_dep()
Dexpr.h19 struct file *next; member
67 struct symbol *next; member
79 …sym) for (i = 0; i < 257; i++) for (sym = symbol_hash[i]; sym; sym = sym->next) if (sym->type != S…
107 struct property *next; member
119 for (st = sym->prop; st; st = st->next) \
124 for (st = sym->prop; st; st = st->next) \
128 struct menu *next; member
/busybox-1.35.0/networking/udhcp/
Ddhcprelay.c38 struct xid_item *next; member
56 item->next = dhcprelay_xid_list.next; in xid_add()
57 dhcprelay_xid_list.next = item; in xid_add()
64 struct xid_item *item = dhcprelay_xid_list.next; in xid_expire()
70 last->next = item->next; in xid_expire()
72 item = last->next; in xid_expire()
75 item = item->next; in xid_expire()
82 struct xid_item *item = dhcprelay_xid_list.next; in xid_find()
87 item = item->next; in xid_find()
94 struct xid_item *item = dhcprelay_xid_list.next; in xid_del()
[all …]
/busybox-1.35.0/util-linux/volume_id/
Dunused_msdos.c64 uint64_t next; in volume_id_probe_msdos_part_table() local
131 next = extended; in volume_id_probe_msdos_part_table()
136 while (next != 0) { in volume_id_probe_msdos_part_table()
151 next = 0; in volume_id_probe_msdos_part_table()
162 if (next == 0) in volume_id_probe_msdos_part_table()
163 next = extended + poff; in volume_id_probe_msdos_part_table()
189 next = 0; in volume_id_probe_msdos_part_table()
194 current = next; in volume_id_probe_msdos_part_table()
Dget_devname.c23 struct uuidCache_s *next; member
87 for (last = uuidCache; last->next; last = last->next) in uuidcache_addentry()
89 last->next = xzalloc(sizeof(*uuidCache)); in uuidcache_addentry()
90 last = last->next; in uuidcache_addentry()
185 uc = uc->next; in get_spec_by_x()
248 uc = uc->next; in display_uuid_cache()
286 uc = uc->next; in get_devname_from_label()
301 uc = uc->next; in get_devname_from_uuid()
/busybox-1.35.0/editors/
Dpatch.c57 struct double_list *next; member
68 list = list->next; in dlist_free()
85 line->next = llist; in dlist_add()
88 p->next = line; in dlist_add()
91 *list = line->next = line->prev = line; in dlist_add()
187 TT.current_hunk->prev->next = NULL; in fail_hunk()
220 TT.current_hunk->prev->next = NULL; in apply_one_hunk()
223 for (plist = TT.current_hunk; plist; plist = plist->next) { in apply_one_hunk()
256 plist = plist->next; in apply_one_hunk()
299 plist = plist->next; in apply_one_hunk()
[all …]
Dpatch_toybox.c51 struct double_list *next; member
65 void **next = (void **)*llist; in TOY_llist_pop() local
66 *llist = *next; in TOY_llist_pop()
68 return (void *)next; in TOY_llist_pop()
94 line->next = *list; in dlist_add()
96 (*list)->prev->next = line; in dlist_add()
98 } else *list = line->next = line->prev = line; in dlist_add()
285 TT.current_hunk->prev->next = 0; in fail_hunk()
313 TT.current_hunk->prev->next = NULL; in apply_one_hunk()
316 for (plist = TT.current_hunk; plist; plist = plist->next) { in apply_one_hunk()
[all …]
Ded.c28 struct LINE *next; member
98 curLine = lines.next; in findLine()
107 lp = lines.next; in findLine()
115 lp = lp->next; in findLine()
189 lp = lp->next; in searchLines()
338 newLp->next = lp; in insertLine()
340 lp->prev->next = newLp; in insertLine()
499 lp = lp->next; in writeLines()
540 lp = lp->next; in printLines()
562 lp = lp->next; in printLines()
[all …]
/busybox-1.35.0/archival/libarchive/
Dget_header_cpio.c11 struct hardlinks_t *next; member
112 new->next = archive_handle->cpio__hardlinks_to_create; in get_header_cpio()
117 new->next = archive_handle->cpio__created_hardlinks; in get_header_cpio()
150 archive_handle->cpio__hardlinks_to_create = make_me->next; in get_header_cpio()
173 cur = cur->next; in get_header_cpio()
180 make_me->next = archive_handle->cpio__created_hardlinks; in get_header_cpio()
187 archive_handle->cpio__created_hardlinks = p->next; in get_header_cpio()
/busybox-1.35.0/util-linux/
Dumount.c105 struct mtab_list *next; in umount_main() member
137 m->next = mtl; in umount_main()
172 for (m = mtl; m; m = m->next) in umount_main()
225 while ((m = m->next) != NULL) in umount_main()
236 m = mtl->next; in umount_main()
/busybox-1.35.0/networking/libiproute/
Dll_map.c17 struct idxmap *next; member
33 for (im = idxmap[idx & 0xF]; im; im = im->next) in find_by_index()
63 for (imp = &idxmap[h]; (im = *imp) != NULL; imp = &im->next) in ll_remember_index()
68 im->next = *imp; in ll_remember_index()
155 for (im = idxmap[i]; im; im = im->next) { in xll_name_to_index()
/busybox-1.35.0/e2fsprogs/
Dfsck.c92 struct fs_info *next; member
107 struct fsck_instance *next; member
329 G.filesys_last->next = fs; in create_fs_device()
365 for (fs = G.filesys_info; fs; fs = fs->next) { in lookup()
380 for (inst = G.instance_list; inst; inst = inst->next) { in progress_active()
401 for (inst = G.instance_list; inst; inst = inst->next) { in kill_all_if_got_signal()
446 inst = inst->next; in wait_one()
467 for (inst2 = G.instance_list; inst2; inst2 = inst2->next) { in wait_one()
492 prev->next = inst->next; in wait_one()
494 G.instance_list = inst->next; in wait_one()
[all …]
/busybox-1.35.0/init/
Dinit.c201 struct init_action *next; member
453 char *word, *next; in init_exec() local
455 next = strcpy(buf, command - dash); /* command including "-" */ in init_exec()
456 command = next + dash; in init_exec()
457 while ((word = strsep(&next, " \t")) != NULL) { in init_exec()
562 for (a = G.init_action_list; a; a = a->next) { in mark_terminated()
598 for (a = G.init_action_list; a; a = a->next) { in run_actions()
641 *nextp = a->next; in new_init_action()
644 nextp = &(*nextp)->next; in new_init_action()
645 a->next = NULL; in new_init_action()
[all …]
/busybox-1.35.0/shell/hush_test/hush-parsing/
Dnoeol.tests1 # next line has no EOL!
/busybox-1.35.0/shell/ash_test/ash-parsing/
Dnoeol.tests1 # next line has no EOL!
/busybox-1.35.0/shell/hush_test/hush-vars/
Dvar_LINENO3.right2 and increments on next line: 1

12345