Home
last modified time | relevance | path

Searched refs:comma (Results 1 – 12 of 12) sorted by relevance

/busybox-1.35.0/procps/
Dps.c435 char *comma, *equal; in parse_o() local
437 comma = strchr(opt, ','); in parse_o()
439 if (comma && (!equal || equal > comma)) { in parse_o()
440 *comma = '\0'; in parse_o()
442 *comma = ','; in parse_o()
443 opt = comma + 1; in parse_o()
456 comma = strchr(equal, ','); in parse_o()
457 if (comma) in parse_o()
458 *comma = '\0'; in parse_o()
467 if (!comma) in parse_o()
[all …]
Dps.posix24 a single argument in the form of a <blank> or comma-separated
30 plist is a single argument in the form of a <blank> or comma-
50 clist is a single argument in the form of a <blank> or comma-
56 single argument in the form of a <blank> or comma-separated
67 comma-separated list. In the listing, the numerical user ID
75 or comma-separated list.
86 names presented as a single argument, <blank> or comma-separated. Each
/busybox-1.35.0/networking/
Dftpd.c543 char *raw, *comma; in handle_port() local
565 comma = strrchr(raw, ','); in handle_port()
566 if (comma == NULL) in handle_port()
568 *comma = '\0'; in handle_port()
569 port = bb_strtou(&comma[1], NULL, 10); in handle_port()
573 comma = strrchr(raw, ','); in handle_port()
574 if (comma == NULL) in handle_port()
576 *comma = '\0'; in handle_port()
577 port_hi = bb_strtou(&comma[1], NULL, 10); in handle_port()
Dtc.c294 bool comma = false; in cbq_print_opt() local
298 comma = true; in cbq_print_opt()
301 if (comma) in cbq_print_opt()
/busybox-1.35.0/scripts/
DKbuild.include5 comma := ,
13 # contain a comma
14 depfile = $(subst $(comma),_,$(@D)/.$(@F).d)
53 # Usage: cflags-y += $(call as-option, -Wa$(comma)-isa=foo,)
DMakefile.lib84 name-fix = $(squote)$(quote)$(subst $(comma),_,$(subst -,_,$1))$(quote)$(squote)
124 ld_flags = $(filter-out -Wl$(comma)%,$(LDFLAGS) $(EXTRA_LDFLAGS))
/busybox-1.35.0/e2fsprogs/
Dfsck.c900 char *comma; in compile_fs_type() local
926 comma = strchrnul(s, ','); in compile_fs_type()
927 G.fs_type_list[num++] = xstrndup(s, comma-s); in compile_fs_type()
928 if (*comma == '\0') in compile_fs_type()
930 s = comma + 1; in compile_fs_type()
/busybox-1.35.0/shell/
Dbrace.txt6 form of an optional preamble, followed by either a series of comma-sep-
29 closing braces, and at least one unquoted comma or a valid sequence
/busybox-1.35.0/util-linux/
Dmount.c599 char *comma = strchr(options, ','); in parse_mount_options() local
602 if (comma) *comma = '\0'; in parse_mount_options()
648 if (!comma) in parse_mount_options()
651 *comma = ','; in parse_mount_options()
652 options = ++comma; in parse_mount_options()
/busybox-1.35.0/examples/var_service/getty_tty1/
Dunicode_cyrillic.keymap85 keycode 51 = comma less +U+0431 +U+0411 comma
/busybox-1.35.0/
DMakefile.custom183 comma:= ,
/busybox-1.35.0/miscutils/
Dbc.c4462 bool comma, voidfunc; in zbc_parse_funcdef() local
4498 comma = false; in zbc_parse_funcdef()
4537 comma = p->lex == BC_LEX_COMMA; in zbc_parse_funcdef()
4538 if (comma) { in zbc_parse_funcdef()
4547 if (comma) RETURN_STATUS(bc_error_bad_function_definition()); in zbc_parse_funcdef()