Home
last modified time | relevance | path

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

12345678910>>...21

/external/selinux/python/sepolgen/tests/
Daudit.txt33 …:s0 msg='PAM: setcred acct=root : exe="/usr/bin/sudo" (hostname=?, addr=?, terminal=? res=success)'
34 …sg='PAM: session open acct=root : exe="/usr/bin/sudo" (hostname=?, addr=?, terminal=? res=success)'
35 …g='PAM: session close acct=root : exe="/usr/bin/sudo" (hostname=?, addr=?, terminal=? res=success)'
36 …'PAM: accounting acct=root : exe="/usr/sbin/crond" (hostname=?, addr=?, terminal=cron res=success)'
38 …AM: session open acct=root : exe="/usr/sbin/crond" (hostname=?, addr=?, terminal=cron res=success)'
39 …sg='PAM: setcred acct=root : exe="/usr/sbin/crond" (hostname=?, addr=?, terminal=cron res=success)'
40 …sg='PAM: setcred acct=root : exe="/usr/sbin/crond" (hostname=?, addr=?, terminal=cron res=success)'
41 …M: session close acct=root : exe="/usr/sbin/crond" (hostname=?, addr=?, terminal=cron res=success)'
42 …:s0 msg='PAM: setcred acct=root : exe="/usr/bin/sudo" (hostname=?, addr=?, terminal=? res=success)'
43 …sg='PAM: session open acct=root : exe="/usr/bin/sudo" (hostname=?, addr=?, terminal=? res=success)'
[all …]
/external/marisa-trie/lib/marisa/grimoire/trie/
Dkey.h13 union_.terminal = 0; in Key()
49 void set_terminal(std::size_t terminal) { in set_terminal() argument
50 MARISA_DEBUG_IF(terminal > MARISA_UINT32_MAX, MARISA_SIZE_ERROR); in set_terminal()
51 union_.terminal = (UInt32)terminal; in set_terminal()
67 std::size_t terminal() const { in terminal() function
68 return union_.terminal; in terminal()
79 UInt32 terminal; member
119 union_.terminal = 0; in ReverseKey()
155 void set_terminal(std::size_t terminal) { in set_terminal() argument
156 MARISA_DEBUG_IF(terminal > MARISA_UINT32_MAX, MARISA_SIZE_ERROR); in set_terminal()
[all …]
/external/python/cpython2/Doc/library/
Dpty.rst2 :mod:`pty` --- Pseudo-terminal utilities
12 The :mod:`pty` module defines operations for handling the pseudo-terminal
14 controlling terminal programmatically.
16 Because pseudo-terminal handling is highly platform dependent, there is code to
25 Fork. Connect the child's controlling terminal to a pseudo-terminal. Return
28 file descriptor connected to the child's controlling terminal (and also to the
34 Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or
41 Spawn a process, and connect its controlling terminal with the current
43 reading from the controlling terminal.
Dtoken.rst5 :synopsis: Constants representing terminal nodes of the parse tree.
13 of the parse tree (terminal tokens). Refer to the file :file:`Grammar/Grammar`
31 Return true for terminal token values.
36 Return true for non-terminal token values.
/external/toybox/toys/pending/
Dinit.c71 struct termios terminal; in reset_term() local
73 tcgetattr(fd, &terminal); in reset_term()
74 terminal.c_cc[VINTR] = 3; //ctrl-c in reset_term()
75 terminal.c_cc[VQUIT] = 28; /*ctrl-\*/ in reset_term()
76 terminal.c_cc[VERASE] = 127; //ctrl-? in reset_term()
77 terminal.c_cc[VKILL] = 21; //ctrl-u in reset_term()
78 terminal.c_cc[VEOF] = 4; //ctrl-d in reset_term()
79 terminal.c_cc[VSTART] = 17; //ctrl-q in reset_term()
80 terminal.c_cc[VSTOP] = 19; //ctrl-s in reset_term()
81 terminal.c_cc[VSUSP] = 26; //ctrl-z in reset_term()
[all …]
/external/libtextclassifier/native/utils/grammar/parsing/
Dmatcher.cc159 StringPiece* terminal) { in FindTerminalMatches() argument
160 const int terminal_size = terminal->size(); in FindTerminalMatches()
170 *terminal = StringPiece(terminal_match, terminal->length()); in FindTerminalMatches()
260 const int match_offset, StringPiece terminal) { in AddTerminal() argument
272 FindTerminalMatches(ByteIterator(terminal), rules_, in AddTerminal()
273 shard->terminal_rules(), &terminal)) { in AddTerminal()
279 [terminal](ParseTree* parse_tree) { in AddTerminal()
280 parse_tree->terminal = terminal.data(); in AddTerminal()
288 LowercasingByteIterator(&unilib_, terminal), rules_, in AddTerminal()
289 shard->lowercase_terminal_rules(), &terminal)) { in AddTerminal()
[all …]
Dmatcher.h88 StringPiece terminal);
90 StringPiece terminal) { in AddTerminal() argument
91 AddTerminal(CodepointSpan{begin, end}, begin, terminal); in AddTerminal()
Dmatcher_test.cc41 std::string terminal; member
50 << ", terminal=" << match.terminal in operator <<()
55 MATCHER_P3(IsTerminal, begin, end, terminal,
59 DescribeMatcher<std::string>(terminal, negation)) {
62 ExplainMatchResult(terminal, arg.terminal, result_listener);
114 result.back().terminal = derivation.parse_tree->terminal; in GetMatchResults()
/external/python/cpython3/Doc/library/
Dpty.rst1 :mod:`pty` --- Pseudo-terminal utilities
15 The :mod:`pty` module defines operations for handling the pseudo-terminal
17 controlling terminal programmatically.
19 Because pseudo-terminal handling is highly platform dependent, there is code to
28 Fork. Connect the child's controlling terminal to a pseudo-terminal. Return
31 file descriptor connected to the child's controlling terminal (and also to the
37 Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or
44 Spawn a process, and connect its controlling terminal with the current
46 reading from the controlling terminal. It is expected that the process
63 that. If *stdin_read* signals EOF the controlling terminal can no longer
[all …]
/external/libtextclassifier/native/utils/grammar/utils/
Dir.cc228 Nonterm Ir::Add(const Lhs& lhs, const std::string& terminal, in Add() argument
232 return AddRule(lhs, terminal, &shards_[shard].terminal_rules); in Add()
234 return AddRule(lhs, terminal, &shards_[shard].lowercase_terminal_rules); in Add()
269 std::string terminal; in SerializeTerminalRules() member
302 return a.terminal < b.terminal; in SerializeTerminalRules()
319 const StringPiece terminal(terminal_rules[i].terminal); in SerializeTerminalRules() local
326 if (StringPiece(terminal_rules[j].terminal).EndsWith(terminal)) { in SerializeTerminalRules()
331 if (terminal_rules[j].terminal.size() == terminal.size() && j < i) { in SerializeTerminalRules()
354 static_cast<int>(entry.terminal.size())); in SerializeTerminalRules()
357 static_cast<int>(entry.terminal.size())); in SerializeTerminalRules()
[all …]
Drules.h64 explicit RhsElement(const std::string& terminal, const bool is_optional) in RhsElement()
66 terminal(terminal), in RhsElement()
76 std::string terminal; member
/external/llvm-project/lldb/third_party/Python/module/ptyprocess-0.6.0/
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
/external/owasp/sanitizer/src/main/org/owasp/html/
DTrie.java47 private final boolean terminal; field in Trie
72 this.terminal = depth == elements.get(start).getKey().length(); in Trie()
73 if (this.terminal) { in Trie()
116 public boolean isTerminal() { return terminal; } in isTerminal()
166 if (terminal) { strings.add(prefix); } in toStringList()
180 sb.append(terminal ? "terminal" : "nonterminal"); in toStringBuilder()
/external/libwebsockets/lib/roles/h2/
Dminihuf.c306 int terminal; member
345 state[m].terminal = 0; in main()
373 state[walk].terminal = n++; in main()
428 state[saw].terminal, in main()
429 state[saw].terminal & 0xff); in main()
/external/selinux/python/sepolgen/tests/test_data/
Dhttpd.log1 …staff_r:staff_t:s0 tclass=dbus : exe="/bin/dbus-daemon" (sauid=81, hostname=?, addr=?, terminal=?)'
2 …staff_r:staff_t:s0 tclass=dbus : exe="/bin/dbus-daemon" (sauid=81, hostname=?, addr=?, terminal=?)'
3 …staff_r:staff_t:s0 tclass=dbus : exe="/bin/dbus-daemon" (sauid=81, hostname=?, addr=?, terminal=?)'
4 …staff_r:staff_t:s0 tclass=dbus : exe="/bin/dbus-daemon" (sauid=81, hostname=?, addr=?, terminal=?)'
5 …staff_r:staff_t:s0 tclass=dbus : exe="/bin/dbus-daemon" (sauid=81, hostname=?, addr=?, terminal=?)'
6 …staff_r:staff_t:s0 tclass=dbus : exe="/bin/dbus-daemon" (sauid=81, hostname=?, addr=?, terminal=?)'
7 …staff_r:staff_t:s0 tclass=dbus : exe="/bin/dbus-daemon" (sauid=81, hostname=?, addr=?, terminal=?)'
8 …staff_r:staff_t:s0 tclass=dbus : exe="/bin/dbus-daemon" (sauid=81, hostname=?, addr=?, terminal=?)'
9 …staff_r:staff_t:s0 tclass=dbus : exe="/bin/dbus-daemon" (sauid=81, hostname=?, addr=?, terminal=?)'
10 …staff_r:staff_t:s0 tclass=dbus : exe="/bin/dbus-daemon" (sauid=81, hostname=?, addr=?, terminal=?)'
[all …]
Daudit.log13 …msg='PAM: authentication acct=root : exe="/bin/su" (hostname=?, addr=?, terminal=pts/1 res=success…
14 …:s0 msg='PAM: accounting acct=root : exe="/bin/su" (hostname=?, addr=?, terminal=pts/1 res=success…
48 …0 msg='PAM: session open acct=root : exe="/bin/su" (hostname=?, addr=?, terminal=pts/1 res=success…
49 …u_t:s0 msg='PAM: setcred acct=root : exe="/bin/su" (hostname=?, addr=?, terminal=pts/1 res=success…
58 …hentication acct=kmacmill : exe="/usr/bin/newrole" (hostname=?, addr=?, terminal=pts/1 res=success…
59 … accounting acct=kmacmill : exe="/usr/bin/newrole" (hostname=?, addr=?, terminal=pts/1 res=success…
60 …=staff_u:sysadm_r:sysadm_t: exe="/usr/bin/newrole" (hostname=?, addr=?, terminal=/dev/pts/1 res=su…
116 …u_t:s0 msg='PAM: setcred acct=root : exe="/bin/su" (hostname=?, addr=?, terminal=pts/1 res=success…
122 … msg='PAM: session close acct=root : exe="/bin/su" (hostname=?, addr=?, terminal=pts/1 res=success…
128 …ion close acct=kmacmill : exe="/usr/sbin/gdm-binary" (hostname=?, addr=?, terminal=:0 res=success)'
[all …]
/external/cros/system_api/dbus/vm_applications/
Dapps.proto52 // Extra parameters to use when launching a terminal application that allow
53 // executing a command inside the terminal.
56 // Name of the VM to launch the terminal in.
59 // Name of the container within the VM to launch the terminal in.
/external/e2fsprogs/po/
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
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
/external/libexif/po/
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
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
/external/deqp-deps/glslang/glslang/MachineIndependent/
DIntermTraverse.cpp237 if (terminal) in traverse()
238 terminal->traverse(it); in traverse()
252 if (terminal) in traverse()
253 terminal->traverse(it); in traverse()
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/
DIntermTraverse.cpp237 if (terminal) in traverse()
238 terminal->traverse(it); in traverse()
252 if (terminal) in traverse()
253 terminal->traverse(it); in traverse()
/external/jline/src/src/main/java/jline/
DConsoleReader.java121 private final Terminal terminal; field in ConsoleReader
191 this.terminal = term; in ConsoleReader()
212 bindings = terminal.getDefaultBindings(); in ConsoleReader()
255 return this.terminal; in getTerminal()
361 if (!terminal.getEcho()) { in clearEcho()
491 terminal.beforeReadLine(this, this.prompt, mask); in readLine()
499 if (!terminal.isSupported()) { in readLine()
739 terminal.afterReadLine(this, this.prompt, mask); in readLine()
901 if (!terminal.isANSISupported()) { in clearScreen()
1244 if (terminal.isANSISupported()) { in drawBuffer()
[all …]
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/framework/foundation/
Dstream_testing.py45 for value, terminal in self.calls:
48 elif terminal:

12345678910>>...21