Searched refs:term (Results 1 – 3 of 3) sorted by relevance
/system/core/sh/ |
D | histedit.c | 108 char *term, *shname; in histedit() local 122 term = lookupvar("TERM"); in histedit() 123 if (term) in histedit() 124 setenv("TERM", term, 1); in histedit() 184 setterm(const char *term) in setterm() argument 186 if (el != NULL && term != NULL) in setterm() 187 if (el_set(el, EL_TERMINAL, term) != 0) { in setterm() 188 outfmt(out2, "sh: Can't set terminal type %s\n", term); in setterm()
|
/system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/ |
D | wipp_ctrl.c | 561 struct termios term; in wipp_control_disable_term_echo() local 569 if (tcgetattr(STDIN_FILENO, &term) != -1) in wipp_control_disable_term_echo() 572 term.c_lflag &= ~(ECHO); in wipp_control_disable_term_echo() 574 if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &term) != -1) in wipp_control_disable_term_echo() 597 struct termios term; in wipp_control_set_baud_rate() local 606 if (tcgetattr(STDIN_FILENO, &term) != -1) in wipp_control_set_baud_rate() 610 r1 = cfsetispeed(&term, B230400); in wipp_control_set_baud_rate() 611 r2 = cfsetospeed(&term, B230400); in wipp_control_set_baud_rate()
|
/system/core/liblinenoise/ |
D | linenoise.c | 97 char *term = getenv("TERM"); in isUnsupportedTerm() local 100 if (term == NULL) return 0; in isUnsupportedTerm() 102 if (!strcasecmp(term,unsupported_term[j])) return 1; in isUnsupportedTerm()
|