Home
last modified time | relevance | path

Searched refs:opt_char (Results 1 – 2 of 2) sorted by relevance

/busybox-1.35.0/libbb/
Dgetopt32.c308 unsigned char opt_char; member
383 on_off->opt_char = *s;
428 for (on_off = complementary; on_off->opt_char; on_off++)
429 if (on_off->opt_char == l_o->val)
433 on_off->opt_char = l_o->val;
472 for (on_off = complementary; on_off->opt_char; on_off++)
473 if (on_off->opt_char == *s)
512 for (on_off = complementary; on_off->opt_char; on_off++)
513 if (on_off->opt_char == *s) {
545 for (on_off = complementary; on_off->opt_char != c; on_off++) {
[all …]
/busybox-1.35.0/shell/
Dshell_common.c587 int opt_char = getopt(argc, argv, ulimit_opt_string); in shell_builtin_ulimit() local
589 if (opt_char == -1) in shell_builtin_ulimit()
591 if (opt_char == 'H') { in shell_builtin_ulimit()
595 if (opt_char == 'S') { in shell_builtin_ulimit()
599 if (opt_char == 'a') { in shell_builtin_ulimit()
603 if (opt_char == '?') { in shell_builtin_ulimit()
627 int opt_char = getopt(argc, argv, ulimit_opt_string); in shell_builtin_ulimit() local
629 if (opt_char == -1) in shell_builtin_ulimit()
631 if (opt_char == 'H') in shell_builtin_ulimit()
633 if (opt_char == 'S') in shell_builtin_ulimit()
[all …]