Searched defs:terminal (Results 1 - 8 of 8) sorted by relevance

/osnet-11/usr/src/lib/libcurses/screen/
H A Ddelterm.c50 * Relinquish the storage associated with "terminal".
57 delterm(TERMINAL *terminal) argument
59 if (!terminal)
61 (void) delkeymap(terminal);
62 if (terminal->_check_fd >= 0)
63 (void) close(terminal->_check_fd);
65 if (terminal->_pairs_tbl)
66 free(terminal->_pairs_tbl);
67 if (terminal->_color_tbl)
68 free(terminal
[all...]
H A D_del_curterm.c49 del_curterm(TERMINAL *terminal) argument
51 return (delterm(terminal));
H A Ddelkeymap.c44 delkeymap(TERMINAL *terminal) argument
47 int numkeys = terminal->_ksz;
50 for (kpp = terminal->_keys; numkeys-- > 0; kpp++) {
56 if (terminal->_keys != NULL) {
57 free(terminal->_keys);
58 if (terminal->internal_keys != NULL)
59 free(terminal->internal_keys);
61 _blast_keys(terminal);
H A Dsetupterm.c70 char *Def_term = "unknown", /* default terminal type */
221 * and read it in. Parms are terminal type (0 means use getenv("TERM"),
303 * if the length of the specified terminal name is longer
651 * or backtab, even if the terminal has them, since the
765 _blast_keys(TERMINAL *terminal) argument
767 terminal->_keys = NULL;
768 terminal->internal_keys = NULL;
769 terminal->_ksz = terminal->_first_macro = 0;
770 terminal
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Deval.t173 sub terminal { eval 'print $r' } subroutine
176 eval 'terminal($r)';
/osnet-11/usr/src/lib/libcmd/common/
H A Drm.c35 " standard input is a terminal, and the \b--force\b option is not"
91 int terminal; /* attached to terminal */ member in struct:State_s
267 else if (!state->force && state->terminal && eaccess(path, W_OK))
340 state.terminal = isatty(0);
/osnet-11/usr/src/lib/libshell/common/edit/
H A Demacs.c75 #include "terminal.h"
116 CRT=0, /* Crt terminal */
117 PAPER /* Paper terminal */
118 } terminal; member in struct:_emacs_
579 if (ep->terminal == PAPER)
590 if (ep->terminal == PAPER)
591 ep->terminal = CRT;
594 ep->terminal = PAPER;
/osnet-11/usr/src/lib/libpp/common/
H A Dpplib.h210 int terminal; /* terminal states */ member in struct:counter

Completed in 754 milliseconds