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

12

/freebsd-13-stable/sys/sys/
H A Dterminal.h49 struct terminal;
54 * The terminal layer is an abstraction on top of the TTY layer and the
58 * Terminals contain terminal emulators, which means console drivers
59 * don't need to implement their own terminal emulator. The terminal
147 typedef void tc_cursor_t(struct terminal *tm, const term_pos_t *p);
148 typedef void tc_putchar_t(struct terminal *tm, const term_pos_t *p,
150 typedef void tc_fill_t(struct terminal *tm, const term_rect_t *r,
152 typedef void tc_copy_t(struct terminal *tm, const term_rect_t *r,
154 typedef void tc_pre_input_t(struct terminal *t
198 struct terminal { struct
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/
H A Dprompt.c55 /* Descriptor of an open terminal */
61 svn_boolean_t noecho; /* terminal echo was turned off */
62 svn_boolean_t close_handles; /* close handles when closing the terminal */
66 svn_boolean_t restore_state; /* terminal state was changed */
68 struct termios attr; /* saved terminal attributes */
74 terminal_handle_init(terminal_handle_t *terminal,
79 memset(terminal, 0, sizeof(*terminal));
80 terminal->infd = infd;
81 terminal
72 terminal_handle_init(terminal_handle_t *terminal, apr_file_t *infd, apr_file_t *outfd, svn_boolean_t noecho, svn_boolean_t close_handles, apr_pool_t *pool) argument
91 terminal_cleanup_handler(terminal_handle_t *terminal, svn_boolean_t close_handles, svn_boolean_t restore_state) argument
138 terminal_close(terminal_handle_t *terminal) argument
154 terminal_open(terminal_handle_t **terminal, svn_boolean_t noecho, apr_pool_t *pool) argument
235 terminal_puts(const char *string, terminal_handle_t *terminal, apr_pool_t *pool) argument
299 terminal_getc(int *code, terminal_handle_t *terminal, svn_boolean_t can_erase, apr_pool_t *pool) argument
495 terminal_handle_t *terminal; local
594 terminal_handle_t *terminal; local
815 terminal_handle_t *terminal; local
[all...]
H A Dconfig_file.c569 char *terminal;
572 terminal = strchr(ctx->section->data, ']');
574 if (!terminal)
584 *terminal = 0;
585 ctx->section->len = terminal - ctx->section->data;
567 char *terminal; local
/freebsd-13-stable/sys/kern/
H A Dsubr_terminal.c43 #include <sys/terminal.h>
48 static MALLOC_DEFINE(M_TERMINAL, "terminal", "terminal device");
53 * Normally we don't need to lock down the terminal emulator, because
55 * Unfortunately this is not the case when the terminal acts as a
169 terminal_init(struct terminal *tm)
202 struct terminal *
205 struct terminal *tm;
207 tm = malloc(sizeof(struct terminal), M_TERMINAL, M_WAITOK|M_ZERO);
217 terminal_sync_ttysize(struct terminal *t
[all...]
/freebsd-13-stable/crypto/heimdal/appl/telnet/telnet/
H A DMakefile.am12 sys_bsd.c telnet.c terminal.c \
/freebsd-13-stable/usr.bin/telnet/
H A DMakefile11 telnet.c terminal.c utilities.c
/freebsd-13-stable/libexec/rc/rc.d/
H A Dserial114 terminal() { function
116 # with the cable or terminal arranged so that DCD is on
117 # at least while the terminal is on.
139 terminal ${dc} $*
158 # terminal u 0
/freebsd-13-stable/sbin/restore/
H A Drestore.h64 extern FILE *terminal; /* file descriptor for the terminal input */
H A Dtape.c138 terminal = stdin;
155 * our own connection to the terminal.
157 terminal = fopen(_PATH_TTY, "r");
158 if (terminal == NULL) {
161 terminal = fopen(_PATH_DEVNULL, "r");
162 if (terminal == NULL) {
340 if (yflag || ferror(terminal) || feof(terminal))
378 if (fgets(buf, BUFSIZ, terminal) == NULL)
396 if (fgets(buf, BUFSIZ, terminal)
[all...]
H A Dutilities.c395 c = getc(terminal);
396 while (c != '\n' && getc(terminal) != '\n')
H A Dinteractive.c94 * Read and execute commands from the terminal.
325 if (fgets(input, BUFSIZ, terminal) == NULL) {
H A Dmain.c78 FILE *terminal; variable
/freebsd-13-stable/contrib/ncurses/misc/
H A Drun_tic.in141 These are extended terminal capabilities which are compiled
161 These are extended terminal capabilities which may be compiled
/freebsd-13-stable/sys/dev/vt/
H A Dvt_cpulogos.c38 #include <sys/terminal.h>
124 struct terminal *tm = vd->vd_curwindow->vw_terminal;
156 struct terminal *tm;
190 /* Resize screen buffer and terminal. */
213 struct terminal *tm;
248 /* Resize screen buffer and terminal. */
H A Dvt.h49 #include <sys/terminal.h>
185 * Per-window terminal screen buffer.
197 struct terminal *vb_terminal;
285 struct terminal *vw_terminal; /* (c) Terminal. */
388 extern struct terminal vt_consterm;
H A Dvt_core.c56 #include <sys/terminal.h>
204 struct terminal vt_consterm;
262 struct terminal vt_consterm = {
490 /* Notify owner process about terminal availability. */
513 /* Check if virtual terminal is locked */
1087 vtterm_bell(struct terminal *tm)
1102 vtterm_beep(struct terminal *tm, u_int param)
1121 vtterm_cursor(struct terminal *tm, const term_pos_t *p)
1129 vtterm_putchar(struct terminal *tm, const term_pos_t *p, term_char_t c)
1137 vtterm_fill(struct terminal *t
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h423 Terminal terminal(stdin_fd);
425 const bool is_a_tty = terminal.IsATerminal();
429 terminal.SetCanonical(false);
430 terminal.SetEcho(true);
/freebsd-13-stable/contrib/ncurses/ncurses/widechar/
H A Dlib_wacs.c116 * a Unicode-capable terminal would have something resembling a mode.
/freebsd-13-stable/usr.bin/chat/
H A Dchat.c489 fatal(2, "Can't get terminal parameters: %m");
503 fatal(2, "Can't set terminal parameters: %m");
545 fatal(2, "Can't restore terminal parameters: %m");
827 * is terminal.
836 * The expectation did not occur. This is terminal.
/freebsd-13-stable/lib/libedit/
H A DMakefile21 terminal.c tokenizer.c tokenizern.c tty.c vi.c
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.cpp349 // By default the stdio paths passed in will be pseudo-terminal (/dev/pts).
408 int terminal = m_monitor->GetTerminalFD(); local
409 if (terminal >= 0) {
413 int stdio = fcntl(terminal, F_DUPFD_CLOEXEC, 0);
420 int stdio = fcntl(terminal, F_DUPFD, 0);
425 stdio = fcntl(terminal, F_SETFD, FD_CLOEXEC);
/freebsd-13-stable/stand/lua/
H A Dcolor.lua115 -- case the terminal defaults don't match what we're expecting.
/freebsd-13-stable/contrib/libedit/
H A DMakefile20 terminal.c tokenizer.c tokenizern.c tty.c vi.c
/freebsd-13-stable/contrib/ntp/scripts/update-leap/
H A Dupdate-leap.in421 -t Send output to terminal - implied if STDOUT attached to terminal
/freebsd-13-stable/usr.sbin/pmcstat/
H A Dpmcpl_calltree.c373 int i, terminal; local
386 * Check if this is a terminal node.
390 terminal = 1;
398 terminal = 0;
403 if (ct->pct_narc == 0 || terminal) {

Completed in 307 milliseconds

12