Searched refs:terminal (Results 1 - 25 of 35) sorted by relevance

12

/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...]
H A Dllib-lcurses146 int del_curterm(TERMINAL *terminal);
631 void delkeymap(TERMINAL *terminal);
637 int delterm(TERMINAL *terminal);
954 void _blast_keys(TERMINAL *terminal);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Term/
H A DCap.pm48 $terminal = Tgetent Term::Cap { TERM => undef, OSPEED => $ospeed };
49 $terminal->Trequire(qw/ce ku kd/);
50 $terminal->Tgoto('cm', $col, $row, $FH);
51 $terminal->Tputs('dl', $count, $FH);
52 $terminal->Tpad($string, $count, $FH);
57 a terminal capability (termcap) database.
59 More information on the terminal capabilities will be found in the
70 print $terminal->Tpad($self->{_xx}, 1);
117 then use to send the control strings to the terminal using B<Tputs>
120 The function extracts the entry of the specified terminal
[all...]
H A DReadLine.pm123 I<terminal capacities>, first two will be issued to make the prompt
333 our $terminal;
335 return if defined $terminal;
338 $terminal = Tgetent Term::Cap ({OSPEED => 9600}); # Avoid warning.
349 unless (defined $terminal) {
354 @rl_term_set = map {$_ ? $terminal->Tputs($_,1) || '' : ''} @ts;
H A DANSIColor.pm250 Note that not all attributes are supported by all terminal types, and some
399 The codes generated by this module are standard terminal control codes,
412 Jean Delvare provided the following table of different common terminal
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dpod2text.PL199 sequences for the terminal from termcap, and use that information in
201 width of your terminal device. Using this option requires that your system
204 will contain terminal control sequences for your current terminal type.
210 your terminal device.
243 from this environment variable, if available. It overrides terminal width
250 current terminal device.
H A Dpod2man.PL117 terminal using nroff(1), normally via man(1), or printing using troff(1).
/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/grub/grub2/grub-core/commands/
H A Dterminal.c59 /* This is quadratic but we don't expect mode than 30 terminal
89 return grub_error (GRUB_ERR_BAD_ARGUMENT, N_ ("no terminal specified"));
106 return grub_error (GRUB_ERR_BAD_ARGUMENT, "unknown terminal '%s'\n",
122 return grub_error (GRUB_ERR_BAD_ARGUMENT, "unknown terminal '%s'\n",
158 "can't remove the last terminal");
194 "can't remove the last terminal");
240 GRUB_MOD_INIT(terminal)
246 N_("List or select an input terminal."));
251 N_("List or select an output terminal."));
254 GRUB_MOD_FINI(terminal)
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/re/
H A Dre.pm88 my $terminal = Tgetent Term::Cap ({OSPEED => 9600}); # Avoid warning.
91 my $colors = join "\t", map {$terminal->Tputs($_,1)} @props;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/Text/
H A DTermcap.pm11 # terminal type.
40 # In the initialization method, grab our terminal characteristics as well as
52 # Fall back on a hard-coded terminal speed if POSIX::Termios isn't
149 text using the correct termcap escape sequences for the current terminal.
156 the current terminal, and falls back on the ECMA-48 (the same in this
H A DOverstrike.pm175 advantage of the terminal's B<stand-out> and I<underline> capabilities, such
/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/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
H A DSeekable.pm27 as a terminal, pipe or socket). If the fgetpos() function is available in
/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/cmd/perl/5.8.4/distrib/lib/CPAN/
H A DFirstTime.pm209 The next option deals with the charset your terminal supports. In
213 terminal supports UTF-8, you say no to the next question, if it
223 $ans = prompt("Your terminal expects ISO-8859-1 (yes/no)?",
447 be echoed to the terminal!
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dperl5db.pl1249 # is running at a terminal or not.
1331 to be used to obtain a new terminal when a new debugger is started. Right now,
1343 # of terminal this is,
2043 # If we have a terminal for input, and we get something back
2047 # We have a terminal, or can get one ...
2674 # If the terminal supported history, grab it and
2988 that the terminal supports history). It find the the command required, puts it
5132 # Make the terminal sensible if we're not the primary debugger.
5703 The subs here do some of the terminal management for multiple debuggers.
5707 Top-level function called when we want to set up a new terminal fo
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DConcise.pm885 terminal).
902 This looks better if your terminal supports it.
908 terminal (or the horizontal scrolling mode of less(1)) and are suitable
/osnet-11/usr/src/lib/libpp/common/
H A Dpplex.c258 count(terminal);
540 sfprintf(sfstderr, "%7d: terminal states\n", pp.counter.terminal);
H A Dpplib.h210 int terminal; /* terminal states */ member in struct:counter
/osnet-11/usr/src/grub/grub2/build-bios/grub-core/
H A DMakefile6152 #am__append_4301 = terminal.module
6153 #am__append_4302 = terminal.module$(EXEEXT)
6157 # terminal.marker
6158 #am__append_4306 = terminal.mod
6159 #am__append_4307 = terminal.marker
6160 am__append_4308 = terminal.module
6161 am__append_4309 = terminal.module$(EXEEXT)
6166 terminal.marker
6167 am__append_4313 = terminal.mod
6168 am__append_4314 = terminal
[all...]
/osnet-11/usr/src/grub/grub2/build-uefi64/grub-core/
H A DMakefile6152 #am__append_4301 = terminal.module
6153 #am__append_4302 = terminal.module$(EXEEXT)
6157 # terminal.marker
6158 #am__append_4306 = terminal.mod
6159 #am__append_4307 = terminal.marker
6160 #am__append_4308 = terminal.module
6161 #am__append_4309 = terminal.module$(EXEEXT)
6166 # terminal.marker
6167 #am__append_4313 = terminal.mod
6168 #am__append_4314 = terminal
[all...]

Completed in 147 milliseconds

12