Home
last modified time | relevance | path

Searched refs:start (Results 1 – 25 of 83) sorted by relevance

1234

/busybox-1.35.0/shell/hush_test/hush-quoting/
Ddollar_altvalue2.right2 start:
5 start:
8 start:
11 start:
14 start:
20 start:
23 start:
26 start:
29 start:
32 start:
[all …]
/busybox-1.35.0/shell/ash_test/ash-quoting/
Ddollar_altvalue2.right2 start:
5 start:
8 start:
11 start:
14 start:
20 start:
23 start:
26 start:
29 start:
32 start:
[all …]
/busybox-1.35.0/sysklogd/
Dklogd.c239 char *start; in klogd_main() local
241 start = log_buffer + used; in klogd_main()
242 n = klogd_read(start, KLOGD_LOGBUF_SIZE-1 - used); in klogd_main()
249 start[n] = '\0'; in klogd_main()
252 start = log_buffer; in klogd_main()
254 char *newline = strchrnul(start, '\n'); in klogd_main()
260 overlapping_strcpy(log_buffer, start); in klogd_main()
261 used = newline - start; in klogd_main()
275 if (*start == '<') { in klogd_main()
276 start++; in klogd_main()
[all …]
/busybox-1.35.0/miscutils/
Dflash_eraseall.c69 erase->start, in show_progress()
70 (unsigned) ((unsigned long long) erase->start * 100 / meminfo->size) in show_progress()
152 for (erase.start = 0; erase.start < meminfo.size; in flash_eraseall_main()
153 erase.start += meminfo.erasesize) { in flash_eraseall_main()
156 loff_t offset = erase.start; in flash_eraseall_main()
161 printf("\nSkipping bad block at 0x%08x\n", erase.start); in flash_eraseall_main()
192 oob.start = erase.start + clmpos; in flash_eraseall_main()
196 xlseek(fd, erase.start, SEEK_SET); in flash_eraseall_main()
208 printf(" Cleanmarker written at %x.", erase.start); in flash_eraseall_main()
Dflash_lock_unlock.c74 lock.start = 0; in flash_lock_unlock_main()
95 lock.start = offset; in flash_lock_unlock_main()
Dmakedevs.c209 unsigned start = 0; in makedevs_main() local
221 &major, &minor, &start, &increment, &count)) in makedevs_main()
222 || ((unsigned)(major | minor | start | count | increment) > 255) in makedevs_main()
284 nameN = xasprintf("%s%u", full_name, start + i); in makedevs_main()
Dflashcp.c109 e.start = 0; in flashcp_main()
115 (long long)e.start, devicename); in flashcp_main()
120 e.start += mtd.erasesize; in flashcp_main()
/busybox-1.35.0/libbb/
Dsimplify_path.c11 char* FAST_FUNC bb_simplify_abs_path_inplace(char *start) in bb_simplify_abs_path_inplace() argument
15 p = s = start; in bb_simplify_abs_path_inplace()
27 if (p > start) { in bb_simplify_abs_path_inplace()
38 if ((p == start) || (*p != '/')) { /* not a trailing slash */ in bb_simplify_abs_path_inplace()
Ddie_if_bad_username.c24 const char *start = name; in die_if_bad_username() local
55 (unsigned)ch, (unsigned)(name - start)); in die_if_bad_username()
63 if (name - start >= LOGIN_NAME_MAX) in die_if_bad_username()
Dplatform.c91 const char *start = s, *end = s; in memrchr() local
95 while (end >= start) { in memrchr()
135 char *start = *stringp; in strsep() local
138 if (!start) in strsep()
142 ptr = start + strlen(start); in strsep()
144 ptr = strpbrk(start, delim); in strsep()
147 return start; in strsep()
154 return start; in strsep()
Dprint_numbered_lines.c20 N = ns->start; in print_numbered_lines()
32 ns->start = N; in print_numbered_lines()
/busybox-1.35.0/coreutils/
Dsort.c144 int start = start; /* for compiler */ in get_key() local
195 if (!j) start = end; in get_key()
200 while (isspace(str[start])) start++; in get_key()
203 while (end > start && isspace(str[end-1])) end--; in get_key()
211 start += key->range[1] - 1; in get_key()
212 if (start > len) start = len; in get_key()
215 if (end < start) in get_key()
216 end = start; in get_key()
217 str = xstrndup(str+start, end-start); in get_key()
220 for (start = end = 0; str[end]; end++) in get_key()
[all …]
Dcut.c152 unsigned uu = 0, start = 0, end = 0, out = 0; in cut_file() local
161 start = dcount = uu = 0; in cut_file()
171 start = linelen; in cut_file()
190 start = uu; in cut_file()
194 if (end != start || !shoe) in cut_file()
195 printf("%s%.*s", out++ ? odelim : "", end-start, line + start); in cut_file()
196 start = uu; in cut_file()
Dnl.c64 ns.start = 1; in nl_main()
68 &ns.width, &ns.sep, &ns.start, &ns.inc, &opt_b); in nl_main()
/busybox-1.35.0/util-linux/
Dfdisk_sgi.c323 uint32_t start = sgi_get_start_sector(i); in sgi_list_table() local
332 /* start */ (long) scround(start), in sgi_list_table()
333 /* end */ (long) scround(start+len)-1, in sgi_list_table()
344 uint32_t start = SGI_SSWAP32(sgilabel->directory[i].vol_file_start); in sgi_list_table() local
349 i, (char*)name, (unsigned int) start, (unsigned int) len); in sgi_list_table()
482 unsigned int start = 0; in verify_sgi() local
527 for (i = 1, start = 0; i < sortcount; i++) { in verify_sgi()
544 if (start > sgi_get_start_sector(Index[i])) { in verify_sgi()
548 start - sgi_get_start_sector(Index[i])); in verify_sgi()
552 if (start < sgi_get_start_sector(Index[i])) { in verify_sgi()
[all …]
Dfdisk_sun.c84 set_sun_partition(int i, unsigned start, unsigned stop, int sysid) in set_sun_partition() argument
88 SUN_SSWAP32(start / (g_heads * g_sectors)); in set_sun_partition()
90 SUN_SSWAP32(stop - start); in set_sun_partition()
366 fetch_sun(unsigned *starts, unsigned *lens, unsigned *start, unsigned *stop) in fetch_sun() argument
370 *start = 0; in fetch_sun()
379 if (starts[i] == *start) in fetch_sun()
380 *start += lens[i]; in fetch_sun()
409 unsigned starts[8], lens[8], start, stop; in verify_sun() local
414 fetch_sun(starts, lens, &start, &stop); in verify_sun()
464 start = starts[array[i]] + lens[array[i]]; in verify_sun()
[all …]
Dfstrim.c33 uint64_t start; member
74 range.start = xatoull_sfx(arg_o, kmg_i_suffixes); in fstrim_main()
Dfdisk.c183 unsigned long start; member
1131 static void set_hsc_start_end(struct partition *p, sector_t start, sector_t stop) in set_hsc_start_end() argument
1133 if (dos_compatible_flag && (start / (g_sectors * g_heads) > 1023)) in set_hsc_start_end()
1134 start = g_heads * g_sectors * 1024 - 1; in set_hsc_start_end()
1135 set_hsc(p->head, p->sector, p->cyl, start); in set_hsc_start_end()
1143 set_partition(int i, int doext, sector_t start, sector_t stop, int sysid) in set_partition() argument
1157 set_start_sect(p, start - offset); in set_partition()
1158 set_nr_sects(p, stop - start + 1); in set_partition()
1159 set_hsc_start_end(p, start, stop); in set_partition()
2348 check(int n, unsigned h, unsigned s, unsigned c, sector_t start) in check() argument
[all …]
/busybox-1.35.0/procps/
Dsmemcap.c47 struct fileblock *start, *cur; in archivefile() local
48 struct fileblock **prev = &start; in archivefile()
75 for (cur = start; (int)size > 0; size -= TAR_BLOCK_SIZE) { in archivefile()
77 start = cur; in archivefile()
79 free(start); in archivefile()
/busybox-1.35.0/modutils/
Ddepmod.c86 static void order_dep_list(module_db *modules, module_entry *start, llist_t *add) in order_dep_list() argument
101 m->dnext = start; in order_dep_list()
102 m->dprev = start->dprev; in order_dep_list()
103 start->dprev->dnext = m; in order_dep_list()
104 start->dprev = m; in order_dep_list()
107 order_dep_list(modules, start, m->deps); in order_dep_list()
/busybox-1.35.0/networking/
Dpscan.c76 unsigned start, diff; in pscan_main() local
110 start = MONOTONIC_US(); in pscan_main()
144 diff = MONOTONIC_US() - start; in pscan_main()
145 DMSG("write to port %u @%u", port, diff - start); in pscan_main()
/busybox-1.35.0/runit/
Drunsv.c99 struct timespec start; member
252 status.time_be64 = SWAP_BE64(s->start.tv_sec + 0x400000000000000aULL); in update_status()
253 status.time_nsec_be32 = SWAP_BE32(s->start.tv_nsec); in update_status()
399 gettimeofday_ns(&s->start); in startservice()
535 gettimeofday_ns(&svd[0].start); in runsv_main()
552 gettimeofday_ns(&svd[1].start); in runsv_main()
669 deadline = svd[0].start.tv_sec + 1; in runsv_main()
670 gettimeofday_ns(&svd[0].start); in runsv_main()
672 if (LESS(svd[0].start.tv_sec, deadline)) in runsv_main()
682 deadline = svd[1].start.tv_sec + 1; in runsv_main()
[all …]
/busybox-1.35.0/examples/udhcp/
Dudhcpd.conf5 start 192.168.0.20
/busybox-1.35.0/networking/ssl_helper-wolfssl/
Dssl_helper.sh11 ${PREFIX}gcc $STATIC --start-group ssl_helper.o -lm wolfssl-*/src/.libs/libwolfssl.a --end-group -o…
/busybox-1.35.0/editors/
Dsed.c374 const char *start; in parse_file_cmd() local
378 start = skip_whitespace(filecmdstr); in parse_file_cmd()
379 eol = strchrnul(start, '\n'); in parse_file_cmd()
380 if (eol == start) in parse_file_cmd()
385 *retval = xstrndup(start, eol-start + 1); in parse_file_cmd()
386 (*retval)[eol-start] = '\\'; in parse_file_cmd()
389 *retval = xstrdup(start); in parse_file_cmd()
812 int start = G.regmatch[0].rm_so; in do_subst_command() local
826 if (start == end && *line) in do_subst_command()
832 for (i = 0; i < start; i++) in do_subst_command()
[all …]

1234