Searched refs:term (Results 1 – 18 of 18) sorted by relevance
/busybox-1.35.0/libbb/ |
D | setup_environment.c | 47 const char *term; in setup_environment() local 51 term = getenv("TERM"); in setup_environment() 53 if (term) in setup_environment() 54 xsetenv("TERM", term); in setup_environment()
|
D | xfuncs.c | 308 char *term = getenv("TERM"); in is_TERM_dumb() local 309 return term && strcmp(term, "dumb") == 0; in is_TERM_dumb()
|
/busybox-1.35.0/loginutils/ |
D | vlock.c | 64 struct termios term; in vlock_main() local 109 term = oterm; in vlock_main() 110 term.c_iflag |= IGNBRK; /* ignore serial break (why? VTs don't have breaks, right?) */ in vlock_main() 111 term.c_iflag &= ~BRKINT; /* redundant? "dont translate break to SIGINT" */ in vlock_main() 112 term.c_lflag &= ~(ISIG | ECHO | ECHOCTL); /* ignore ^C ^Z, echo off */ in vlock_main() 113 tcsetattr_stdin_TCSANOW(&term); in vlock_main()
|
/busybox-1.35.0/shell/hush_test/hush-misc/ |
D | exitcode_trap4.tests | 2 trap "echo TERM;return 11" term
|
D | exitcode_trap2.tests | 4 trap "false;exit" term
|
D | exitcode_trap5.tests | 4 trap "echo TERM;false;g" term
|
D | exitcode_trap3.tests | 3 trap "echo TERM;return" term
|
D | exitcode_trap6.tests | 6 trap "kill -int $$;exit" term
|
/busybox-1.35.0/shell/ash_test/ash-misc/ |
D | exitcode_trap4.tests | 2 trap "echo TERM;return 11" term
|
D | exitcode_trap2.tests | 4 trap "false;exit" term
|
D | exitcode_trap5.tests | 4 trap "echo TERM;false;g" term
|
D | exitcode_trap3.tests | 3 trap "echo TERM;return" term
|
D | exitcode_trap6.tests | 6 trap "kill -int $$;exit" term
|
/busybox-1.35.0/networking/ |
D | isrv_identd.c | 73 goto term; in do_rd() 95 term: in do_rd()
|
/busybox-1.35.0/docs/ |
D | style-guide.txt | 84 single term (even if it is a compound term) such as: 163 Also, don't put a space between the left paren and the first term, nor between
|
/busybox-1.35.0/ |
D | NOFORK_NOEXEC.lst | 45 But if ran as NOEXEC, it would create a potentially long-term process,
|
D | LICENSE | 78 the term "modification".) Each licensee is addressed as "you".
|
/busybox-1.35.0/shell/ |
D | ash.c | 2594 legal_pathopt(const char *opt, const char *term, int magic) in legal_pathopt() argument 2606 opt += strcspn(opt, term); in legal_pathopt() 2634 const char *term = "%:"; in padvance_magic() local 2648 if (*start == '%' && (p = legal_pathopt(start + 1, term, magic))) { in padvance_magic() 2651 term = ":"; in padvance_magic() 2654 len = strcspn(start, term); in padvance_magic() 2660 if (legal_pathopt(p + 1, term, magic)) in padvance_magic()
|