Home
last modified time | relevance | path

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

12345678910

/openbsd/gnu/llvm/lldb/third_party/Python/module/ptyprocess-0.6.0/
H A DREADME.rst1 Launch a subprocess in a pseudo terminal (pty), and interact with both the
6 pipe rather than a terminal, or curses-style interfaces that rely on a terminal.
7 If you need to automate these things, running the process in a pseudo terminal
/openbsd/usr.bin/telnet/
H A DREADME13 the terminal driver on both ends, turning on BINARY
15 to get set in the terminal driver on both ends.
19 when a terminal type is received, termcap/terminfo
20 is consulted to determine if it is a known terminal
21 type. It keeps requesting terminal types until it
26 request for a terminal type, duplicating the last
H A DMakefile41 terminal.c utilities.c genget.c
/openbsd/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/termcap/
H A Dterm-unknown2 Rendering with unknown terminal type
7 An unknown I<terminal type> B<should> C<suppress> all termcap-based
12 An unknown terminal type should "suppress" all termcap-based formatting
/openbsd/usr.sbin/pkg_add/OpenBSD/ProgressMeter/
H A DTerm.pm102 my $terminal;
104 $terminal =
114 $self->{glitch} = $terminal->{_xn};
115 $self->{cleareol} = $terminal->Tputs("ce", 1);
116 $self->{hpa} = $terminal->Tputs("ch", 1);
119 $self->{cuf} = $terminal->Tputs("RI", 1);
/openbsd/gnu/usr.bin/perl/dist/Term-ReadLine/lib/Term/
H A DReadLine.pm374 our $terminal;
376 return if defined $terminal;
379 $terminal = Tgetent Term::Cap ({OSPEED => 9600}); # Avoid warning.
390 unless (defined $terminal) {
395 @rl_term_set = map {$_ ? $terminal->Tputs($_,1) || '' : ''} @ts;
/openbsd/gnu/llvm/lldb/source/Core/
H A DCoreProperties.td109 …Desc<"When displaying the column marker in a color-enabled terminal, use the ANSI terminal code sp…
113 …Desc<"When displaying the column marker in a color-enabled terminal, use the ANSI terminal code sp…
117 …Desc<"When displaying the line marker in a color-enabled terminal, use the ANSI terminal code spec…
121 …Desc<"When displaying the line marker in a color-enabled terminal, use the ANSI terminal code spec…
145 …ether to show progress or not if the debugger's output is an interactive color-enabled terminal.">;
149 …Desc<"When displaying progress in a color-enabled terminal, use the ANSI terminal code specified i…
153 …Desc<"When displaying progress in a color-enabled terminal, use the ANSI terminal code specified i…
189 …Desc<"When displaying suggestion in a color-enabled terminal, use the ANSI terminal code specified…
193 …Desc<"When displaying suggestion in a color-enabled terminal, use the ANSI terminal code specified…
/openbsd/sbin/init/
H A DNOTES19 not specify how controlling terminal access is affected by
24 references to the controlling terminal are converted to
32 that is, it's immune to job control signals from the terminal.
65 the controlling terminal acquires the session leader's process
72 allocate a controlling terminal. This is normally done by a system
75 of a tty in a session sets the controlling terminal. P130 has the
79 process in a session that acquires a controlling terminal. Access
80 to the terminal from the session is revoked if the controlling
/openbsd/gnu/usr.bin/texinfo/po/
H A Den@quot.header14 # When output to an UTF-8 terminal, the quotation characters appear perfectly.
15 # When output to an ISO-8859-1 terminal, the single quotation marks are
19 # When output to an ASCII terminal, the single quotation marks are
H A Den@boldquot.header14 # When output to an UTF-8 terminal, the quotation characters appear perfectly.
15 # When output to an ISO-8859-1 terminal, the single quotation marks are
19 # When output to an ASCII terminal, the single quotation marks are
/openbsd/gnu/lib/libreadline/shlib/
H A DMakefile.in113 $(topdir)/callback.c $(topdir)/terminal.c $(topdir)/xmalloc.c \
278 terminal.so: $(topdir)/tcap.h
280 terminal.so: $(topdir)/tilde.h $(topdir)/history.h
281 terminal.so: $(topdir)/rltypedefs.h
308 terminal.so: $(topdir)/rlshell.h
327 terminal.so: $(topdir)/rlprivate.h
351 terminal.so: $(topdir)/xmalloc.h
392 terminal.so: $(topdir)/terminal.c
393 text.so: $(topdir)/terminal.c
426 terminal.so: terminal.c
[all …]
/openbsd/gnu/lib/libreadline/
H A DMakefile.in96 $(srcdir)/callback.c $(srcdir)/terminal.c $(srcdir)/xmalloc.c \
113 util.o kill.o undo.o macro.o input.o callback.o terminal.o \
363 terminal.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
364 terminal.o: tcap.h
365 terminal.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
366 terminal.o: history.h rlstdc.h
391 terminal.o: rlshell.h
410 terminal.o: rlprivate.h
434 terminal.o: xmalloc.h
475 terminal.o: $(srcdir)/terminal.c
[all …]
/openbsd/gnu/usr.bin/perl/cpan/Term-ReadKey/
H A DREADME1 Term::ReadKey 2.36 - Change terminal modes, and perform non-blocking reads.
28 as several other terminal related features, including retrieval/modification
74 The terminal mode function is controlled by the "ReadMode" function, which
100 handler to reset the terminal (via ReadMode 0) if the user aborts the
116 A routine is also provided to get the current terminal size,
122 other programs that check the terminal size in the same manner.
/openbsd/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h436 Terminal terminal(stdin_fd); in Run()
437 TerminalState terminal_state(terminal); in Run()
439 if (terminal.IsATerminal()) { in Run()
441 llvm::consumeError(terminal.SetCanonical(false)); in Run()
442 llvm::consumeError(terminal.SetEcho(true)); in Run()
/openbsd/sbin/restore/
H A Dutilities.c333 c = getc(terminal); in reply()
334 while (c != '\n' && getc(terminal) != '\n') in reply()
335 if (feof(terminal)) in reply()
H A Dtape.c144 terminal = stdin; in setinput()
160 terminal = fopen(_PATH_TTY, "r"); in setinput()
161 if (terminal == NULL) { in setinput()
163 terminal = fopen(_PATH_DEVNULL, "r"); in setinput()
164 if (terminal == NULL) in setinput()
333 if (fgets(buf, sizeof buf, terminal) == NULL) in getvol()
351 if (fgets(buf, sizeof buf, terminal) == NULL || feof(terminal)) in getvol()
/openbsd/gnu/usr.bin/perl/cpan/Term-ReadKey/t/
H A D02_terminal_functions.t11 plan skip_all => "Need a terminal to test";
62 is($usable_terminal, 1, "Manipulating the terminal.");
/openbsd/sys/arch/sparc64/conf/
H A DRAMDISKU516 option WSEMUL_SUN # provide sun terminal emulation; required
17 option WSEMUL_NO_VT100 # do not provide vt100 terminal emulation
H A DRAMDISKU116 option WSEMUL_SUN # provide sun terminal emulation; required
17 option WSEMUL_NO_VT100 # do not provide vt100 terminal emulation
/openbsd/lib/libcurses/
H A DCaps-ncurses346 userdef E3 str - clears the terminal's scrollback buffer.
347 userdef NQ bool - terminal does not support query/response
379 userdef C8 bool - terminal shows bold as high-intensity colors.
383 userdef G0 bool - terminal can deal with ISO 2022 font selection sequences.
384 userdef KJ str s set the encoding of the terminal.
390 userdef XT bool - terminal understands special xterm sequences (OSC, mouse tracking).
398 userdef Ms str ss store the current buffer in the host terminal's selection (clipboard).
399 userdef Se str - reset the cursor style to the terminal initial state.
410 userdef RV str - report terminal secondary device attributes
411 userdef XR str - report terminal version as a free-format string.
[all …]
/openbsd/usr.bin/vi/cl/
H A DREADME.signal49 historic implementations of vi). Periodically reading the terminal
57 command, it's a terminal event. (Dammit.)
137 an interface to the terminal keypad. So, regardless, we have to do our
152 is asleep. It then optionally resets the terminal (because the modes aren't
154 that somewhere in the middle of all of this, vi is resetting the terminal,
158 processes) receive the SIGTSTP. This permits it to clean up the terminal
163 processes vi may fork off. If vi calls ex, ex resets the terminal and
/openbsd/gnu/usr.bin/perl/ext/re/
H A Dre.pm44 my $terminal = Tgetent Term::Cap ({OSPEED => 9600}); # Avoid warning.
47 my $colors = join "\t", map {$terminal->Tputs($_,1)} @props;
/openbsd/games/hunt/huntd/
H A DMakefile6 extern.c makemaze.c shots.c terminal.c
/openbsd/usr.sbin/smtpd/
H A Denqueue.c650 int terminal = 0; in parse_addr() local
681 terminal = 1; in parse_addr()
689 terminal = 1; in parse_addr()
692 if (!pstate.comment && !terminal && (!(!(pstate.quote || in parse_addr()
708 if (terminal) in parse_addr()
/openbsd/gnu/lib/libreadline/doc/
H A Drltech.texinfo418 when Readline is waiting for terminal input.
447 to reset the terminal. This function should undo the effects of
549 * Terminal Management:: Functions to manage terminal settings.
1003 Reinitialize Readline's idea of the terminal settings using
1004 @var{terminal_name} as the terminal type (e.g., @code{vt100}).
1133 Set up the terminal for readline I/O and display the initial
1150 the terminal settings are modified for Readline's use again.
1161 the program exits to reset the terminal settings.
1253 will reinitialize the terminal and continue to accept input.
1268 terminal state.
[all …]

12345678910