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

12

/barrelfish-2018-10-04/include/angler/
H A Dangler.h18 errval_t angler_new_session(char *terminal, struct capref *session_id);
/barrelfish-2018-10-04/usr/angler/
H A Dangler.c3 * \brief angler - terminal and session initialization manager
6 * angler determines the terminal to associate with the session. The second,
7 * the type of the terminal.
71 fprintf(stderr, "Usage: %s <terminal> <terminal type>\n", prog_name);
73 fprintf(stderr, "\tterminal - serial0.terminal|console0.terminal|...\n");
87 char *terminal = argv[1]; local
91 err = angler_new_session(terminal, &session_id);
/barrelfish-2018-10-04/usr/drivers/serial/
H A Dbasic_service.c34 static struct serial_binding *terminal; variable in typeref:struct:serial_binding
60 DEBUG_ERR(err, "error sending serial input to terminal");
79 if (terminal != NULL && inbuf[!ninbuf].buf == NULL) {
80 tx_handler(terminal);
93 terminal = b;
112 terminal = b;
/barrelfish-2018-10-04/lib/angler/
H A Dangler.c49 * \param terminal Terminal used for the session.
53 errval_t angler_new_session(char *terminal, struct capref *session_id) argument
58 assert(terminal != NULL);
61 /* Lookup terminal session iref at nameservice. */
62 err = nameservice_blocking_lookup(terminal, &iref);
73 * \param session_iref Interface reference of session interface of terminal that
103 /* Bind to terminal session interface */
126 /* Associate session with terminal. */
/barrelfish-2018-10-04/lib/barrelfish/
H A Dterminal.c19 #include <barrelfish/terminal.h>
52 * Only domains that are part of a session can read from a terminal
55 assert(!"Daemons can't read from a terminal.");
H A Dinit.c24 #include <barrelfish/terminal.h>
346 // init terminal
/barrelfish-2018-10-04/usr/tests/terminalio/
H A Dterminal_input.c3 * \brief Simple test program to test terminal input.
18 #include <barrelfish/terminal.h>
/barrelfish-2018-10-04/lib/posixcompat/
H A Dtermios.c41 #include <barrelfish/terminal.h>
55 * \brief Get the parameters associated with the terminal.
94 * \brief Set the parameters associated with the terminal.
117 * have no effect on the terminal device.
/barrelfish-2018-10-04/usr/arrakismon/
H A Dconsole.c17 #include <barrelfish/terminal.h>
53 // do not have proper terminal support in BF.
72 // we do not yet have a real understanding of the terminal, assume it is
133 // FIXME: for the terminal to be more flexible this should not be hardcoded
H A Dkeyboard.c17 #include <barrelfish/terminal.h>
H A Dpc16550d.c18 * forwarded directly to the terminal. */
23 #include <barrelfish/terminal.h>
/barrelfish-2018-10-04/usr/vmkitmon/
H A Dconsole.c17 #include <barrelfish/terminal.h>
53 // do not have proper terminal support in BF.
72 // we do not yet have a real understanding of the terminal, assume it is
133 // FIXME: for the terminal to be more flexible this should not be hardcoded
H A Dvmkitmon.c21 #include <barrelfish/terminal.h>
H A Dkeyboard.c17 #include <barrelfish/terminal.h>
/barrelfish-2018-10-04/lib/vfs/
H A Dvfs_fd.c13 #include <barrelfish/terminal.h>
141 /* only support writting to terminal */
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/des/
H A Dread_pwd.c110 /* There are 5 types of terminal interface supported,
264 $DESCRIPTOR(terminal,"TT");
326 status = sys$assign(&terminal,&channel,0,0);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/ui/
H A Dui_openssl.c183 /* There are 5 types of terminal interface supported,
295 static $DESCRIPTOR(terminal,"TT");
526 status = sys$assign(&terminal,&channel,0,0);
/barrelfish-2018-10-04/tools/aarch64_gem5/
H A Dgem5script.py163 system.terminal = Terminal()
/barrelfish-2018-10-04/doc/012-services/
H A DServices.tex168 % Andrew says: ``terminal, etc.''
314 The terminal service provides a terminal abstraction that provides
315 programs with input and output. A terminal typically multiplexes
318 The terminal service implements the terminal abstraction, and provides
777 the code to execute, and the terminal service is used for input and output.
804 The terminal service will need to use drivers to access the input and
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/lib/
H A Dbsi.pl179 % display should always output to the terminal in bsi
/barrelfish-2018-10-04/usr/eclipseclp/documents/megalog/
H A Dknowbase-sec.tex265 can be used. These allow clauses to be entered from the terminal
270 is used to add clauses from the terminal. Enter the predicate
/barrelfish-2018-10-04/usr/eclipseclp/documents/userman/
H A Dumsmacros.tex494 grammar_head --> non_terminal, [','], terminal.
507 grammar_body_item --> terminal.
H A Dumsusing.tex451 \subsection{Entering a program from the terminal}
453 Programs can be entered directly from the terminal, as well as being read
/barrelfish-2018-10-04/usr/fish/
H A Dfish_common.c29 #include <barrelfish/terminal.h>
/barrelfish-2018-10-04/usr/eclipseclp/documents/applications/
H A Dtutorial.tex1569 This grammar translates directly into a DCG representation. The start symbol\index{start symbol} of the grammar is {\it file(X)}, the argument $X$ will be bound to the parse tree\index{parse tree} for the grammar. Each rule uses the symbol \verb|-->| to define a rule head on the left side and its body on the right. All rules for this particular data file replace one non-terminal symbol\index{non terminal symbol}\index{symbol, non terminal} with one or more non-terminal symbols. The argument in the rules is used to put the parse tree together. For this data file, the parse tree will be a term {\it router\_traffic\_sample(L)} with $L$ a list of terms {\it router\_traffic\_sample(A,B,C,D,E,F)} where the arguments are simple types (atoms and integers).
1605 The following rules define the basic symbols of the grammar. Terminal symbols\index{terminal symbol}\index{symbol, terminal} are placed in square brackets, while additional Prolog code is added with braces\index{braces}. The {\it time\_stamp} rule for example reads one token $X$. It first checks that $X$ is a string, then converts it to a number $N$, and then uses a library predicate {\it eclipse\_date}\index{eclipse\_date} to convert $N$ into a date representation $Date: 2006/09/23 01:48:40 $, which is returned as the parse result.

Completed in 269 milliseconds

12