Home
last modified time | relevance | path

Searched refs:end (Results 1 – 25 of 90) sorted by relevance

1234

/busybox-1.35.0/shell/hush_test/hush-quoting/
Ddollar_altvalue2.right4 end
7 end
10 end
13 end
17 end
22 end
25 end
28 end
31 end
35 end
[all …]
/busybox-1.35.0/shell/ash_test/ash-quoting/
Ddollar_altvalue2.right4 end
7 end
10 end
13 end
17 end
22 end
25 end
28 end
31 end
35 end
[all …]
/busybox-1.35.0/networking/
Dhttpd_ssi.c65 char *end; in process_includes() local
75 end = strrchr(filename, '/'); in process_includes()
76 if (end) { in process_includes()
79 end[1] = '\0'; in process_includes()
110 end = strchr(include_directive, '\"'); in process_includes()
111 if (!end) { in process_includes()
123 *end++ = '\0'; in process_includes()
124 end = strchr(end, '>'); in process_includes()
125 if (end) in process_includes()
126 end = strdup(end + 1); in process_includes()
[all …]
/busybox-1.35.0/procps/
Dsysctl.c59 char *cptr, *last_good, *end, *slash; in sysctl_dots_to_slashes() local
62 end = strchrnul(name, '='); in sysctl_dots_to_slashes()
65 if (slash < end in sysctl_dots_to_slashes()
76 while (end != name) { in sysctl_dots_to_slashes()
77 end--; in sysctl_dots_to_slashes()
78 if (*end == '.') *end = '/'; in sysctl_dots_to_slashes()
79 else if (*end == '/') *end = '.'; in sysctl_dots_to_slashes()
103 end_ch = *end; in sysctl_dots_to_slashes()
104 *end = '.'; /* trick the loop into trying full name too */ in sysctl_dots_to_slashes()
108 cptr = end; in sysctl_dots_to_slashes()
[all …]
/busybox-1.35.0/libbb/
Dtime.c15 char end = '\0'; in parse_datestr() local
78 &end) >= 2 in parse_datestr()
86 &end) >= 4 in parse_datestr()
95 &end) >= 5 in parse_datestr()
100 &end) >= 5 in parse_datestr()
108 if (end == ':') { in parse_datestr()
110 if (sscanf(last_colon + 1, "%u%c", &ptm->tm_sec, &end) == 1) in parse_datestr()
111 end = '\0'; in parse_datestr()
126 &end) >= 4 in parse_datestr()
130 &end) >= 3 in parse_datestr()
[all …]
Dpidfile.c19 char *end; in write_pidfile() local
35 end = utoa_to_buf(getpid(), buf, sizeof(buf)); in write_pidfile()
36 *end = '\n'; in write_pidfile()
37 full_write(pid_fd, buf, end - buf + 1); in write_pidfile()
Dreplace.c31 char *buf, *dst, *end; in xmalloc_substitute_string() local
39 while ((end = strstr(src, sub)) != NULL) { in xmalloc_substitute_string()
40 dst = mempcpy(dst, src, end - src); in xmalloc_substitute_string()
43 src = end + sub_len; /* but this. Try "xargs -Iaa echo aaa" */ in xmalloc_substitute_string()
Dbb_do_delay.c19 time_t end, diff; in pause_after_failed_login()
21 end = time(NULL) + LOGIN_FAIL_DELAY; in pause_after_failed_login()
25 diff = end - time(NULL); in pause_after_failed_login()
Dread_key.c248 char *end; in read_key() local
251 row = strtoul(buffer + 1, &end, 10); in read_key()
252 if (*end != ';' || !isdigit(end[1])) in read_key()
254 col = strtoul(end + 1, &end, 10); in read_key()
255 if (*end != 'R') in read_key()
Dcrc32.c57 const void *end = (uint8_t*)buf + len; in crc32_block_endian1() local
59 while (buf != end) { in crc32_block_endian1()
68 const void *end = (uint8_t*)buf + len; in crc32_block_endian0() local
70 while (buf != end) { in crc32_block_endian0()
Dplatform.c91 const char *start = s, *end = s; in memrchr() local
93 end += n - 1; in memrchr()
95 while (end >= start) { in memrchr()
96 if (*end == (char)c) in memrchr()
97 return (void *) end; in memrchr()
98 end--; in memrchr()
Dget_line_from_file.c13 char* FAST_FUNC bb_get_chunk_from_file(FILE *file, size_t *end) in bb_get_chunk_from_file() argument
29 if (end && ch == '\n') in bb_get_chunk_from_file()
32 if (end) in bb_get_chunk_from_file()
33 *end = idx; in bb_get_chunk_from_file()
/busybox-1.35.0/coreutils/
Dsort.c145 int end; in get_key() local
160 end = len; in get_key()
165 end = 0; in get_key()
169 while ((ch = str[end]) != '\0') { in get_key()
170 end++; in get_key()
176 while (isspace(str[end])) in get_key()
177 end++; in get_key()
179 while (str[end] != '\0') { in get_key()
180 if (isspace(str[end])) in get_key()
182 end++; in get_key()
[all …]
Dsplit.c61 size_t end = strlen(old); in next_file() local
66 curr = old + end - i; in next_file()
164 char *end = memchr(src, '\n', bytes_read); in split_main() local
165 if (end) { in split_main()
167 to_write = end - src + 1; in split_main()
Dcut.c152 unsigned uu = 0, start = 0, end = 0, out = 0; in cut_file() local
158 if (end == linelen || dcount > cut_lists[cl_pos].endpos) { in cut_file()
162 end = 0; in cut_file()
172 end = linelen; in cut_file()
179 end = uu + rr.rm_so; in cut_file()
185 } else if (line[end = uu++] != *delim) in cut_file()
194 if (end != start || !shoe) in cut_file()
195 printf("%s%.*s", out++ ? odelim : "", end-start, line + start); in cut_file()
Dfactor.c169 goto end; in factorize()
214 end: in factorize()
254 char *end; in factor_main() local
258 end = skip_non_whitespace(numstr); in factor_main()
259 if (*end != '\0') in factor_main()
260 *end++ = '\0'; in factor_main()
262 numstr = end; in factor_main()
Dod.c43 char *end; in odoffset() local
104 dumper->dump_skip = strtol(num, &end, base ? base : 8); in odoffset()
107 if (end != p) in odoffset()
/busybox-1.35.0/mailutils/
Dreformime.c155 char *end; in parse() local
198 end = NULL; in parse()
209 while ((end = xmalloc_fgets(stdin)) != NULL) { in parse()
210 if ('-' == end[0] in parse()
211 && '-' == end[1] in parse()
212 && strncmp(end + 2, boundary, boundary_len) == 0 in parse()
216 fputs(end, fp); in parse()
231 if (end && '-' == end[2 + boundary_len] && '-' == end[2 + boundary_len + 1]) { in parse()
232 dbg_error_msg("FINISHED MPART:'%s'", end); in parse()
235 dbg_error_msg("FINISHED:'%s'", end); in parse()
[all …]
/busybox-1.35.0/util-linux/
Duevent.c69 char *s, *end; in uevent_main() local
91 end = netbuf + len; in uevent_main()
92 *end = '\0'; in uevent_main()
101 while (s < end) { in uevent_main()
Dtaskset.c139 unsigned bit, end; in parse_cpulist() local
142 bit = end = bb_strtou(s, &s, 10); in parse_cpulist()
145 end = bb_strtou(s, &s, 10); in parse_cpulist()
152 || bit > end in parse_cpulist()
153 || end == UINT_MAX /* bb_strtou returns this on malformed / ERANGE numbers */ in parse_cpulist()
159 while (bit <= end && bit < max) { in parse_cpulist()
/busybox-1.35.0/sysklogd/
Dklogd.c278 char *end; in klogd_main() local
279 priority = strtoul(start, &end, 10); in klogd_main()
280 if (*end == '>') in klogd_main()
281 end++; in klogd_main()
282 start = end; in klogd_main()
/busybox-1.35.0/shell/
Dmatch.c33 char *end; in scan_and_match() local
48 end = string + len + 1; in scan_and_match()
51 end = string - 1; in scan_and_match()
66 while (loc != end) { in scan_and_match()
/busybox-1.35.0/networking/libiproute/
Drtm_map.c71 char *end; in rtnl_rtntype_a2n() local
97 res = strtoul(arg, &end, 0); in rtnl_rtntype_a2n()
98 if (end == arg || *end || res > 255) in rtnl_rtntype_a2n()
/busybox-1.35.0/networking/udhcp/
Ddomain_codec.c38 char *ret, *end; in dname_dec() local
43 end = ret = xstrdup(pre); in dname_dec()
65 end = (char *)mempcpy(ret + len, c + 1, *c); in dname_dec()
66 *end = '.'; in dname_dec()
97 if (ret == end) { /* expanded string is empty? abort */ in dname_dec()
103 *end = '\0'; in dname_dec()
/busybox-1.35.0/editors/
Dvi.c294 char *text, *end; // pointers to the user data in memory member
466 #define end (G.end ) macro
697 if (p < end - 1) { in end_line()
698 p = memchr(p, '\n', end - p - 1); in end_line()
700 return end - 1; in end_line()
726 if (p < end - 1 && *p == '\n') in next_line()
758 while (start <= stop && start <= end - 1) { in count_lines()
935 if (src < end) { in format_line()
966 if (src >= end) in format_line()
1017 if (tp < end) { in refresh()
[all …]

1234