Home
last modified time | relevance | path

Searched refs:colon (Results 1 – 11 of 11) sorted by relevance

/busybox-1.35.0/networking/udhcp/
Dsocket.c83 char *colon; in udhcp_listen_socket() local
93 colon = strrchr(inf, ':'); in udhcp_listen_socket()
94 if (colon) in udhcp_listen_socket()
95 *colon = '\0'; in udhcp_listen_socket()
100 if (colon) in udhcp_listen_socket()
101 *colon = ':'; in udhcp_listen_socket()
/busybox-1.35.0/modutils/
Dmodinfo.c145 char *colon, *tokens[2]; in modinfo_main() local
163 colon = last_char_is(tokens[0], ':'); in modinfo_main()
164 if (colon == NULL) in modinfo_main()
166 *colon = '\0'; in modinfo_main()
Dmodprobe.c513 char *colon, *tokens[2]; in load_modules_dep() local
527 colon = last_char_is(tokens[0], ':'); in load_modules_dep()
528 if (colon == NULL) in load_modules_dep()
530 *colon = '\0'; in load_modules_dep()
578 char *colon, *tokens[2]; in modprobe_main() local
585 colon = last_char_is(tokens[0], ':'); in modprobe_main()
586 if (!colon) in modprobe_main()
588 *colon = '\0'; in modprobe_main()
/busybox-1.35.0/archival/
Ddpkg.c288 char *colon; in version_compare() local
295 colon = strchr(ch_ver1, ':'); in version_compare()
296 if (colon) { in version_compare()
298 ch_ver1 = colon + 1; in version_compare()
300 colon = strchr(ch_ver2, ':'); in version_compare()
301 if (colon) { in version_compare()
303 ch_ver2 = colon + 1; in version_compare()
/busybox-1.35.0/networking/
Dhttpd.c2553 char *colon = strchr(iobuf, ':'); in handle_incoming_and_exit() local
2555 if (!colon) in handle_incoming_and_exit()
2558 while (cp < colon) { in handle_incoming_and_exit()
2571 (int)(colon - iobuf), iobuf, in handle_incoming_and_exit()
2572 skip_whitespace(colon + 1) in handle_incoming_and_exit()
/busybox-1.35.0/util-linux/
Dmount.c2095 char *colon = strchr(mp->mnt_fsname, ':'); in singlemount() local
2096 if (colon // looks like "hostname:..." in singlemount()
2097 && strchrnul(mp->mnt_fsname, '/') > colon // "hostname:" has no slashes in singlemount()
/busybox-1.35.0/docs/
Dnew-applet-HOWTO.txt141 keyword - kbuild, config, usage or applet - and a colon, just like shown in the
/busybox-1.35.0/examples/var_service/getty_tty1/
Dunicode_cyrillic.keymap71 keycode 39 = semicolon colon +U+0436 +U+0416 semicolon …
/busybox-1.35.0/editors/
Dvi.c2764 static void colon(char *buf) in colon() function
4096 colon(p); // execute the command
4748 colon(q);
/busybox-1.35.0/shell/
Dash.c7133 char *colon; in subevalvar() local
7139 colon = strchr(loc, ':'); in subevalvar()
7140 if (colon) *colon = '\0'; in subevalvar()
7142 if (colon) *colon = ':'; in subevalvar()
/busybox-1.35.0/scripts/kconfig/
Dlex.zconf.c_shipped896 /* No semi-colon after return; correct usage is to write "yyterminate();" -