Home
last modified time | relevance | path

Searched refs:_term (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dtinfo_driver.c567 TERMINAL *_term = (TERMINAL *) TCB; in drv_sgmode() local
573 if (SET_TTY(_term->Filedes, buf) != 0) { in drv_sgmode()
586 if (GET_TTY(_term->Filedes, buf) != 0) { in drv_sgmode()
601 TERMINAL *_term = (TERMINAL *) TCB; in drv_mode() local
614 if ((drv_sgmode(TCB, FALSE, &(_term->Nttyb)) == OK)) { in drv_mode()
616 _term->Nttyb.c_oflag &= (unsigned) ~OFLAGS_TABS; in drv_mode()
620 _term->Nttyb.sg_flags &= (unsigned) ~XTABS; in drv_mode()
626 if (drv_sgmode(TCB, TRUE, &(_term->Nttyb)) == OK) { in drv_mode()
640 if (drv_sgmode(TCB, FALSE, &(_term->Ottyb)) == OK) { in drv_mode()
642 if (_term->Ottyb.c_oflag & OFLAGS_TABS) in drv_mode()
[all …]
H A Dinit_keytry.c94 TERMTYPE *tp = &(sp->_term->type); in _nc_init_keytry()
H A Dlib_cur_term.c90 SP_PARM->_term = termp; in NCURSES_SP_NAME()
H A Dlib_tputs.c318 (SP_PARM != 0 && SP_PARM->_term == 0) in NCURSES_SP_NAME()
H A Dlib_setup.c425 sp->_term = termp; in _nc_check_screensize()
641 TINFO_GET_SIZE(sp, sp->_term, &new_lines, &new_cols); in _nc_update_screensize()
H A Dcomp_parse.c639 fake_sp._term = &fake_tm; in _nc_resolve_uses2()
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_newterm.c202 its_term = (current ? current->_term : 0); in NCURSES_SP_NAME()
272 current->_term = its_term; in NCURSES_SP_NAME()
275 SP_PARM->_term = new_term; in NCURSES_SP_NAME()
277 new_term = SP_PARM->_term; in NCURSES_SP_NAME()
H A Dlib_set_term.c85 TINFO_SET_CURTERM(newSP, newSP->_term); in NCURSES_EXPORT()
213 NCURSES_SP_NAME(del_curterm) (NCURSES_SP_ARGx sp->_term); in delscreen()
385 sp->_term = cur_term; in NCURSES_SP_NAME()
388 _nc_get_screensize(sp, sp->_term, &slines, &scolumns); in NCURSES_SP_NAME()
628 if (_nc_unicode_locale() && _nc_locale_breaks_acs(sp->_term)) { in NCURSES_SP_NAME()
649 && _nc_locale_breaks_acs(sp->_term)); in NCURSES_SP_NAME()
H A Dlib_restart.c71 SP_PARM->_term = new_term; in NCURSES_EXPORT()
/freebsd/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c1015 TERMINAL *_term = (TERMINAL *) TCB; in wcon_mode() local
1030 if ((wcon_sgmode(TCB, FALSE, &(_term->Nttyb)) == OK)) { in wcon_mode()
1031 _term->Nttyb.c_oflag &= (tcflag_t) (~OFLAGS_TABS); in wcon_mode()
1036 if (wcon_sgmode(TCB, TRUE, &(_term->Nttyb)) == OK) { in wcon_mode()
1051 if (wcon_sgmode(TCB, FALSE, &(_term->Ottyb)) == OK) { in wcon_mode()
1060 code = wcon_sgmode(TCB, TRUE, &(_term->Ottyb)); in wcon_mode()
2006 if (sp->_term && (sp->_term->Filedes == fd)) { \
2007 term = sp->_term; \
H A Dwin32_driver.c762 TERMINAL *_term = (TERMINAL *) TCB; in wcon_mode() local
777 if ((wcon_sgmode(TCB, FALSE, &(_term->Nttyb)) == OK)) { in wcon_mode()
782 if (wcon_sgmode(TCB, TRUE, &(_term->Nttyb)) == OK) { in wcon_mode()
798 if (wcon_sgmode(TCB, FALSE, &(_term->Ottyb)) == OK) { in wcon_mode()
807 code = wcon_sgmode(TCB, TRUE, &(_term->Ottyb)); in wcon_mode()
/freebsd/contrib/ncurses/ncurses/
H A Dcurses.priv.h429 #define HasTerminal(sp) (((sp) != 0) && (0 != ((sp)->_term)))
439 #define TerminalOf(sp) ((sp) ? ((sp)->_term ? (sp)->_term : CurTerm) : CurTerm)
978 TERMINAL *_term; /* terminal type information */ member
/freebsd/contrib/ncurses/ncurses/tty/
H A Dlib_mvcur.c168 #define BAUDRATE(sp) sp->_term->_baudrate /* bits per second */