Home
last modified time | relevance | path

Searched refs:terminal (Results 1 – 25 of 81) sorted by relevance

1234

/illumos-gate/usr/src/lib/libcurses/screen/
H A Ddelterm.c57 if (!terminal) in delterm()
63 if (terminal->_pairs_tbl) in delterm()
65 if (terminal->_color_tbl) in delterm()
68 if (terminal->_acs32map) in delterm()
71 if (terminal->_acsmap) in delterm()
72 free(terminal->_acsmap); in delterm()
81 free(terminal->_bools); in delterm()
82 free(terminal->_nums); in delterm()
83 free(terminal->_strs); in delterm()
84 free(terminal->_strtab); in delterm()
[all …]
H A Ddelkeymap.c42 delkeymap(TERMINAL *terminal) in delkeymap() argument
45 int numkeys = terminal->_ksz; in delkeymap()
48 for (kpp = terminal->_keys; numkeys-- > 0; kpp++) { in delkeymap()
54 if (terminal->_keys != NULL) { in delkeymap()
55 free(terminal->_keys); in delkeymap()
56 if (terminal->internal_keys != NULL) in delkeymap()
57 free(terminal->internal_keys); in delkeymap()
59 _blast_keys(terminal); in delkeymap()
H A D_del_curterm.c47 del_curterm(TERMINAL *terminal) in del_curterm() argument
49 return (delterm(terminal)); in del_curterm()
H A Dsetupterm.c772 _blast_keys(TERMINAL *terminal) in _blast_keys() argument
774 terminal->_keys = NULL; in _blast_keys()
775 terminal->internal_keys = NULL; in _blast_keys()
776 terminal->_ksz = terminal->_first_macro = 0; in _blast_keys()
777 terminal->_lastkey_ordered = terminal->_lastmacro_ordered = -1; in _blast_keys()
778 (void) memset((char *)terminal->funckeystarter, 0, 0400 * in _blast_keys()
H A Dcaps48 hard_copy, "hc" "hc" Hardcopy terminal
91 virtual_terminal, "vt" "vt" Virtual terminal number (CB/Unix)
180 form_feed, "ff" "ff" Hardcopy terminal page eject (*)
195 key_down, "kcud1" "kd" KEY_DOWN, 0402, Sent by terminal down arrow key
213 key_left, "kcub1" "kl" KEY_LEFT, 0404, Sent by terminal left arrow key
221 key_up, "kcuu1" "ku" KEY_UP, 0403, Sent by terminal up arrow key
223 keypad_xmit, "smkx" "ks" Put terminal in "keypad transmit" mode
256 reset_1string, "rs1" "r1" Reset terminal completely to sane modes.
257 reset_2string, "rs2" "r2" Reset terminal completely to sane modes.
258 reset_3string, "rs3" "r3" Reset terminal completely to sane modes.
[all …]
/illumos-gate/usr/src/cmd/tabs/
H A Dtabs.c111 static char *terminal = ""; variable
191 terminal = *++argv; in main()
195 terminal = scan+2; in main()
250 if (*terminal == '\0') { in main()
252 *terminal == '\0') { in main()
257 terminal = "ansi+tabs"; in main()
499 if (strncmp(terminal, "40-2", 4) == 0 || strncmp(terminal, in termadj()
502 else if (strncmp(terminal, "ibm", 3) == 0 || strcmp(terminal, in termadj()
507 if (EQ(terminal, t->ttype)) in termadj()
538 tmarg = getmarg(terminal); in settabs()
[all …]
/illumos-gate/usr/src/cmd/write/
H A Dwrite.c95 char *terminal, *ownterminal, *oterminal; in main() local
132 terminal = NULL; in main()
151 terminal = *++argv; in main()
193 if (terminal != NULL) { in main()
194 if (strncmp(terminal, &ubuf->ut_line[0], in main()
237 else if (terminal == NULL) { in main()
259 if (terminal != NULL && *rterm == '\0') { in main()
265 if (strlcat(rterminal, terminal, sizeof (rterminal)) >= in main()
285 gettext("%s permission denied\n"), terminal); in main()
290 receipient, terminal); in main()
/illumos-gate/usr/src/uts/i86pc/boot/
H A Dboot_vga.c97 fb_info.terminal.x = VGA_TEXT_COLS; in boot_vga_init()
98 fb_info.terminal.y = VGA_TEXT_ROWS; in boot_vga_init()
252 if (row < fb_info.terminal.y - 1) in vga_drawc()
293 if (row >= fb_info.terminal.y) in vga_setpos()
294 row = fb_info.terminal.y - 1; in vga_setpos()
297 if (col >= fb_info.terminal.x) in vga_setpos()
298 col = fb_info.terminal.x - 1; in vga_setpos()
H A Dboot_fb.c225 bp = set_font((short *)&fb_info.terminal.y, in boot_fb_set_font()
226 (short *)&fb_info.terminal.x, h, w); in boot_fb_set_font()
457 if (fb_info.cursor.pos.x > fb_info.terminal.x || in boot_fb_init()
458 fb_info.cursor.pos.y > fb_info.terminal.y || in boot_fb_init()
786 if (row >= fb_info.terminal.y) in boot_fb_setpos()
787 row = fb_info.terminal.y - 1; in boot_fb_setpos()
790 if (col >= fb_info.terminal.x) in boot_fb_setpos()
791 col = fb_info.terminal.x - 1; in boot_fb_setpos()
811 if (rows < fb_info.terminal.y - 1) in boot_fb_putchar()
826 if (cols < fb_info.terminal.x - 1) in boot_fb_putchar()
[all …]
H A Dboot_console.c586 fb_info.terminal.x = VGA_TEXT_COLS; in boot_fb()
587 fb_info.terminal.y = VGA_TEXT_ROWS; in boot_fb()
922 if (cols >= fb_info.terminal.x) in btem_control()
923 cols = fb_info.terminal.x - 1; in btem_control()
932 for (y = 0; y < fb_info.terminal.y; y++) { in btem_control()
/illumos-gate/usr/src/cmd/troff/nroff.d/terms.d/
H A DREADME12 Description of terminal tables for new nroff:
16 The first line should contain the name of the terminal -- just a string,
31 twinit [string] /*sequence to initialize terminal*/
32 twrest [string] /*sequence to restore terminal*/
72 can be printed on the terminal in question. The format of each line
79 The best way to create a terminal table for a new device is to take
80 a terminal table for an old device and modify it!
81 For example, here is the first page of the terminal table for lp:
/illumos-gate/usr/src/grub/grub-0.97/docs/
H A Dgrub.info-2102 terminal support already.
108 grub> terminal serial
115 The command `terminal' (*note terminal::) chooses which type of
116 terminal you want to use. In the case above, the terminal will be a
118 `terminal serial console'. In this case, a terminal in which you press
119 any key will be selected as a GRUB terminal.
178 terminal --timeout=0 serial
722 * terminal:: Choose a terminal
951 `terminal' command is used (*note terminal::).
1085 terminal
[all …]
/illumos-gate/usr/src/data/terminfo/extras/
H A DREADME4 following terminal types and their source are listed below:
7 The rxvt-unicode package is a variant on the rxvt terminal. It
H A Drxvt-unicode.termcap11 rxvt-unicode|rxvt-unicode terminal (X Window System):\
32 rxvt-unicode-256color|rxvt-unicode terminal with 256 colors (X Window System):\
/illumos-gate/usr/src/cmd/login/
H A Dlogin.c335 static char terminal[MAXPATHLEN]; variable
1373 SCPYL(terminal, argv[optind]); in get_options()
1450 SCPYL(terminal, optarg); in get_options()
1597 if (!tflag && !strlen(terminal)) in process_rlogin()
1598 getstr(terminal, sizeof (terminal), "Terminal type"); in process_rlogin()
1600 if (strlen(terminal)) in process_rlogin()
1601 doremoteterm(terminal); in process_rlogin()
2203 ENVSTRNCAT(term, terminal); in establish_user_environment()
2205 if (strlen(terminal)) { in establish_user_environment()
2206 ENVSTRNCAT(term, terminal); in establish_user_environment()
/illumos-gate/usr/src/cmd/gss/etc/
H A Dwarn.conf31 * renew:log-failure terminal 30m
/illumos-gate/usr/src/cmd/sendmail/lib/
H A Dhelpfile32 ehlo SOML Send as mail or terminal [RFC821]
33 ehlo SAML Send as mail and terminal [RFC821]
77 send directly to a users terminal. Not supported in this
83 saml Send and mail. Send directly to the user's terminal,
/illumos-gate/usr/src/contrib/ast/src/lib/libcmd/
H A Drm.c92 int terminal; /* attached to terminal */ member
268 else if (!(ent->fts_info & FTS_SL) && !state->force && state->terminal && eaccess(path, W_OK)) in rm()
341 state.terminal = isatty(0); in b_rm()
/illumos-gate/usr/src/grub/grub-0.97/
H A DAUTHORS28 hidden menu support, the new Linux loader, serial terminal support,
54 logical partitions, and did a significant bugfix for the terminal stuff.
/illumos-gate/usr/src/cmd/Adm/
H A Dttysrch25 # during attempts to determine the name of a terminal device.
28 # are most likely to contain device entries for terminal
/illumos-gate/usr/src/cmd/backup/restore/
H A Dtape.c96 terminal = stdin; in setinput()
131 terminal = fopen("/dev/tty", "r"); in setinput()
132 if (terminal == NULL) { in setinput()
138 terminal = fopen("/dev/null", "r"); in setinput()
139 if (terminal == NULL) { in setinput()
505 (void) fgets(tbf, (int)tbfsize, terminal); in getvol()
506 } while (!feof(terminal) && tbf[0] == '\n'); in getvol()
507 if (feof(terminal)) in getvol()
541 (void) fgets(tbf, (int)tbfsize, terminal); in getvol()
542 if (feof(terminal)) in getvol()
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dcaps74 hard_copy hc hc bool Hardcopy terminal
94 can_change ccc cc bool terminal can redefine existing color
112 virtual_terminal vt vt number Virtual terminal # (CB/Unix)
117 max_attributes ma ma number Max combined attr. terminal can display
187 form_feed ff ff str Hardcopy terminal page eject (P*)
202 key_down kcud1 kd str Sent by terminal down arrow key
220 key_left kcub1 kl str Sent by terminal left arrow key
224 key_right kcuf1 kr str Sent by terminal right arrow key
228 key_up kcuu1 ku str Sent by terminal up arrow key
230 keypad_xmit smkx ks str Put terminal in keypad transmit mode
[all …]
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dcaps72 hard_copy hc hc bool Hardcopy terminal
92 can_change ccc cc bool terminal can redefine existing color
110 virtual_terminal vt vt number Virtual terminal # (CB/Unix)
115 max_attributes ma ma number Max combined attr. terminal can display
185 form_feed ff ff str Hardcopy terminal page eject (P*)
200 key_down kcud1 kd str Sent by terminal down arrow key
218 key_left kcub1 kl str Sent by terminal left arrow key
222 key_right kcuf1 kr str Sent by terminal right arrow key
226 key_up kcuu1 ku str Sent by terminal up arrow key
228 keypad_xmit smkx ks str Put terminal in keypad transmit mode
[all …]
/illumos-gate/usr/src/uts/i86pc/sys/
H A Dframebuffer.h76 fb_info_char_coord_t terminal; /* terminal size in chars */ member
/illumos-gate/usr/src/data/terminfo/
H A Dtermcap.src147 # the terminal.
1140 # uses resizable terminal windows, but the bundled terminal program always
1401 # Monochrome QNX4 terminal or console. Setting this terminal type will
3495 kvt|KDE terminal:\
4169 # Columbus UNIX virtual terminal. This terminal also appears in
5469 # Generic HP terminal - this should (hopefully) work on any HP terminal.
5707 # The HP 150 terminal is a fairly vanilla HP terminal, with the
6429 # designed for use as a SCO ANSI terminal. The qvt70 is a color terminal
11897 # DASHER D578 terminal.
13174 # terminal.
[all …]

1234