HomeSort by relevance Sort by last modified time
    Searched full:terminal (Results 1 - 25 of 1853) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Terminal/
proguard.flags 1 -keep class com.android.terminal.TerminalCallbacks { *; }
2 -keep class com.android.terminal.Terminal { native <methods>; }
  /external/toybox/toys/other/
reset.c 1 /* reset.c - reset the terminal.
15 reset the terminal
21 // man 4 console codes: reset terminal is ESC (no left bracket) c
  /external/chromium-libpac/test/js-unittest/
ends_with_statement_no_semicolon.js 1 // Ends with a statement, and no terminal newline.
  /packages/apps/Terminal/src/com/android/terminal/
TerminalService.java 17 package com.android.terminal;
26 * Background service that keeps {@link Terminal} instances running and warm
30 private final SparseArray<Terminal> mTerminals = new SparseArray<Terminal>();
43 public SparseArray<Terminal> getTerminals() {
48 // If our first terminal, start ourselves as long-lived service
53 final Terminal term = new Terminal();
60 final Terminal term = mTerminals.get(key);
64 // If our last terminal, tear down long-lived servic
    [all...]
TerminalLineView.java 17 package com.android.terminal;
19 import static com.android.terminal.Terminal.TAG;
27 import com.android.terminal.TerminalView.TerminalMetrics;
30 * Rendered contents of a single line of a {@link Terminal} session.
37 private final Terminal mTerm;
40 public TerminalLineView(Context context, Terminal term, TerminalMetrics metrics) {
57 Log.w(TAG, "onDraw() without a terminal");
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
terminalcommand.py 1 """terminalcommand.py -- A minimal interface to Terminal.app.
3 To run a shell command in a new Terminal.app window:
27 START_TERMINAL = "/usr/bin/open /Applications/Utilities/Terminal.app"
28 SEND_MODE = kAENoReply # kAEWaitReply hangs when run from Terminal.app itself
32 """Run a shell command in a new Terminal.app window."""
33 termAddress = AE.AECreateDesc(typeApplicationBundleID, "com.apple.Terminal")
42 if why[0] != -600: # Terminal.app not yet running
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
terminalcommand.py 1 """terminalcommand.py -- A minimal interface to Terminal.app.
3 To run a shell command in a new Terminal.app window:
27 START_TERMINAL = "/usr/bin/open /Applications/Utilities/Terminal.app"
28 SEND_MODE = kAENoReply # kAEWaitReply hangs when run from Terminal.app itself
32 """Run a shell command in a new Terminal.app window."""
33 termAddress = AE.AECreateDesc(typeApplicationBundleID, "com.apple.Terminal")
42 if why[0] != -600: # Terminal.app not yet running
  /external/toybox/toys/posix/
tty.c 1 /* tty.c - Show stdin's terminal name
15 Show filename of terminal connected to stdin.
17 Prints "not a tty" and exits with nonzero status if no terminal
  /external/skia/tools/
OverwriteLine.h 4 // Print this string to reset and clear your current terminal line.
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpa_gui.desktop 8 Terminal=false
  /external/selinux/policycoreutils/run_init/
open_init_pty.8 27 open_init_pty \- run an program under a pseudo terminal
34 Run a program under a pseudo terminal. This is used by
37 context. This program acquires a new Pseudo terminal, forks a child
38 process that binds to the pseudo terminal, and then sits around and
39 connects the physical terminal it was invoked upon with the pseudo
40 terminal, passing keyboard input into to the child process, and passing the
41 output of the child process to the physical terminal.
43 It sets up the pseudo terminal properly based on the physical terminal
44 attributes, and then sets the user's terminal to RAW mode, taking car
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
__init__.py 2 Package generated from /Applications/Utilities/Terminal.app
6 warnpy3k("In 3.x, the Terminal module is removed.", stacklevel=2)
24 '????' : ('Terminal.Standard_Suite', 'Standard_Suite'),
25 '????' : ('Terminal.Text_Suite', 'Text_Suite'),
26 'trmx' : ('Terminal.Terminal_Suite', 'Terminal_Suite'),
84 class Terminal(Standard_Suite_Events,
90 _moduleName = 'Terminal'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
__init__.py 2 Package generated from /Applications/Utilities/Terminal.app
6 warnpy3k("In 3.x, the Terminal module is removed.", stacklevel=2)
24 '????' : ('Terminal.Standard_Suite', 'Standard_Suite'),
25 '????' : ('Terminal.Text_Suite', 'Text_Suite'),
26 'trmx' : ('Terminal.Terminal_Suite', 'Terminal_Suite'),
84 class Terminal(Standard_Suite_Events,
90 _moduleName = 'Terminal'
  /prebuilts/gdb/darwin-x86/lib/python2.7/
tty.py 0 """Terminal utilities."""
19 """Put terminal into a raw mode."""
31 """Put terminal into a cbreak mode."""
  /prebuilts/gdb/linux-x86/lib/python2.7/
tty.py 0 """Terminal utilities."""
19 """Put terminal into a raw mode."""
31 """Put terminal into a cbreak mode."""
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tty.py 0 """Terminal utilities."""
19 """Put terminal into a raw mode."""
31 """Put terminal into a cbreak mode."""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tty.py 0 """Terminal utilities."""
19 """Put terminal into a raw mode."""
31 """Put terminal into a cbreak mode."""
  /cts/tools/dasm/src/java_cup/
terminal.java 6 /** This class represents a terminal symbol in the grammar. Each terminal
15 public class terminal extends symbol { class in inherits:symbol
22 * @param nm the name of the terminal.
23 * @param tp the type of the terminal.
25 public terminal(String nm, String tp) method in class:terminal
36 // throw new internal_error("Duplicate terminal (" + nm + ") created");
37 (new internal_error("Duplicate terminal (" + nm + ") created")).crash();
49 * @param nm the name of the terminal.
51 public terminal(String nm) method in class:terminal
    [all...]
  /packages/apps/Terminal/jni/
com_android_terminal_Terminal.cpp 17 #define LOG_TAG "Terminal"
108 * Terminal session
110 class Terminal {
112 Terminal(jobject callbacks);
113 ~Terminal();
162 Terminal* term = reinterpret_cast<Terminal*>(user);
173 Terminal* term = reinterpret_cast<Terminal*>(user);
185 Terminal* term = reinterpret_cast<Terminal*>(user)
    [all...]
  /external/avahi/avahi-python/avahi-discover/
avahi-discover.desktop.in.in 6 Terminal=false
  /external/avahi/avahi-ui/
bssh.desktop.in.in 6 Terminal=false
bvnc.desktop.in.in 6 Terminal=false
  /external/selinux/policycoreutils/sepolicy/
sepolicy.desktop 7 Terminal=false
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib/pkgconfig/
tinfo.pc 9 Description: ncurses 5.9 terminal interface library
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib32/pkgconfig/
tinfo.pc 9 Description: ncurses 5.9 terminal interface library

Completed in 254 milliseconds

1 2 3 4 5 6 7 8 91011>>