Home
last modified time | relevance | path

Searched refs:term (Results 1 – 18 of 18) sorted by relevance

/busybox-1.35.0/libbb/
Dsetup_environment.c47 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()
Dxfuncs.c308 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/
Dvlock.c64 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/
Dexitcode_trap4.tests2 trap "echo TERM;return 11" term
Dexitcode_trap2.tests4 trap "false;exit" term
Dexitcode_trap5.tests4 trap "echo TERM;false;g" term
Dexitcode_trap3.tests3 trap "echo TERM;return" term
Dexitcode_trap6.tests6 trap "kill -int $$;exit" term
/busybox-1.35.0/shell/ash_test/ash-misc/
Dexitcode_trap4.tests2 trap "echo TERM;return 11" term
Dexitcode_trap2.tests4 trap "false;exit" term
Dexitcode_trap5.tests4 trap "echo TERM;false;g" term
Dexitcode_trap3.tests3 trap "echo TERM;return" term
Dexitcode_trap6.tests6 trap "kill -int $$;exit" term
/busybox-1.35.0/networking/
Disrv_identd.c73 goto term; in do_rd()
95 term: in do_rd()
/busybox-1.35.0/docs/
Dstyle-guide.txt84 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/
DNOFORK_NOEXEC.lst45 But if ran as NOEXEC, it would create a potentially long-term process,
DLICENSE78 the term "modification".) Each licensee is addressed as "you".
/busybox-1.35.0/shell/
Dash.c2594 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()