HomeSort by relevance Sort by last modified time
    Searched defs:Shell (Results 1 - 25 of 46) sorted by null

1 2

  /external/v8/tools/testrunner/network/
distro.py 29 class Shell(object):
30 def __init__(self, shell):
31 self.shell = shell
57 shell = s.shell()
58 if not shell in shells:
59 shells[shell] = Shell(shell)
    [all...]
  /external/toolchain-utils/automation/common/
command.py 10 class Shell(object):
11 """Class used to build a string representation of a shell command."""
49 self._prefix.append(Shell('pushd', cwd))
50 self._suffix.insert(0, Shell('popd'))
54 self._prefix.append(Shell('%s=%s' % (env_var, value)))
55 self._suffix.insert(0, Shell('unset', env_var))
60 self._prefix.append(Shell('%s=$(umask)' % umask_save_var))
61 self._prefix.append(Shell('umask', umask))
62 self._suffix.insert(0, Shell('umask', '$%s' % umask_save_var))
128 """Container that chains shell commands using (&&) shell operator.""
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Shell.h 29 class Shell {
31 Shell(const Shell &sh) = delete;
32 Shell &operator=(const Shell &sh) = delete;
33 virtual ~Shell() {}
81 Shell(Game &game);
110 Shell *shell = reinterpret_cast<Shell *>(user_data) local
    [all...]
Shell.cpp 24 #include "Shell.h"
27 Shell::Shell(Game &game)
38 void Shell::log(LogPriority priority, const char *msg) {
43 void Shell::init_vk() {
53 void Shell::cleanup_vk() {
59 bool Shell::debug_report_callback(VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT obj_type, uint64_t object,
79 void Shell::assert_all_instance_layers() const {
97 void Shell::assert_all_instance_extensions() const {
115 bool Shell::has_all_device_extensions(VkPhysicalDevice phy) const
    [all...]
  /external/chromium-trace/catapult/devil/devil/utils/
mock_calls_test.py 34 def Shell(self, cmd):
66 self.assertEquals(self.adb.Shell,
67 self.call_target(self.call.adb.Shell))
88 with self.patch_call(self.call.adb.Shell, return_value='hello'):
89 self.assertEquals('hello', self.adb.Shell('echo hello'))
96 with self.patch_call(self.call.adb.Shell, side_effect=ValueError):
98 self.adb.Shell('echo hello')
129 self.call.adb.Shell('echo hello'), self.ShellError()):
131 self.adb.Shell('echo hello')
  /external/libmojo/third_party/catapult/devil/devil/utils/
mock_calls_test.py 34 def Shell(self, cmd):
66 self.assertEquals(self.adb.Shell,
67 self.call_target(self.call.adb.Shell))
88 with self.patch_call(self.call.adb.Shell, return_value='hello'):
89 self.assertEquals('hello', self.adb.Shell('echo hello'))
96 with self.patch_call(self.call.adb.Shell, side_effect=ValueError):
98 self.adb.Shell('echo hello')
129 self.call.adb.Shell('echo hello'), self.ShellError()):
131 self.adb.Shell('echo hello')
  /external/libmojo/third_party/catapult/devil/devil/android/sdk/
adb_wrapper.py 80 """Determine if a line read from stdout in persistent shell is extraneous.
82 The results output to stdout by the persistent shell process
84 not part of the output of the shell command. These "extraneous" lines
85 do not always appear and are of two forms: shell prompt lines and lines
92 send_cmd: Command that was sent to adb persistent shell.
113 '''Class to use persistent shell for ADB.
115 This class allows a persistent ADB shell to be created, where multiple
117 up a new ADB shell for each command.
130 self._cmd = [AdbWrapper.GetAdbPath(), '-s', serial, 'shell']
142 """Start the shell.""
    [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-api/1.5/
gmaven-runtime-api-1.5.jar 
  /external/chromium-trace/catapult/devil/devil/android/sdk/
adb_wrapper.py 103 """Determine if a line read from stdout in persistent shell is extraneous.
105 The results output to stdout by the persistent shell process
107 not part of the output of the shell command. These "extraneous" lines
108 do not always appear and are of two forms: shell prompt lines and lines
115 send_cmd: Command that was sent to adb persistent shell.
139 '''Class to use persistent shell for ADB.
141 This class allows a persistent ADB shell to be created, where multiple
143 up a new ADB shell for each command.
156 self._cmd = [AdbWrapper.GetAdbPath(), '-s', serial, 'shell']
168 """Start the shell.""
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Shell.java 8 * SQLite command line shell. This is a partial reimplementaion
9 * of sqlite/src/shell.c and can be invoked by:<P>
12 * java SQLite.Shell [OPTIONS] database [SHELLCMD]
18 public class Shell implements Callback {
40 public Shell(PrintWriter pw, PrintWriter err) {
45 public Shell(PrintStream ps, PrintStream errs) {
51 Shell s = new Shell(this.pw, this.err);
160 tableName = Shell.sql_quote_dbl(str);
162 tableName = Shell.sql_quote(str)
    [all...]
  /external/v8/src/
d8.h 342 class Shell : public i::AllStatic {
  /frameworks/base/services/core/java/com/android/server/storage/
DeviceStorageMonitorService.java 333 (new Shell()).exec(this, in, out, err, args, callback, resultReceiver);
337 class Shell extends ShellCommand {
352 int parseOptions(Shell shell) {
355 while ((opt = shell.getNextOption()) != null) {
363 int onShellCommand(Shell shell, String cmd) {
365 return shell.handleDefaultCommands(cmd);
367 PrintWriter pw = shell.getOutPrintWriter();
370 int opts = parseOptions(shell);
454 Shell shell = new Shell(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
UiModeManagerService.java 351 new Shell(mService).exec(mService, in, out, err, args, callback, resultReceiver);
737 * Handles "adb shell" commands.
739 private static class Shell extends ShellCommand {
746 Shell(IUiModeManager iface) {
    [all...]
BatteryService.java 998 Shell shell = new Shell(); local
    [all...]
AppOpsService.java     [all...]
DeviceIdleController.java 3268 Shell shell = new Shell(); local
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 523 sb.append(SQLite.Shell.sql_quote(tableNamePattern));
536 sb.append(SQLite.Shell.sql_quote(types[i].toLowerCase()));
604 SQLite.Shell.sql_quote(tableNamePattern) +
741 SQLite.Shell.sql_quote(table) + ")"));
744 SQLite.Shell.sql_quote(table) + ")"));
789 SQLite.Shell.sql_quote(iname) + ")"));
871 SQLite.Shell.sql_quote(table) + ")"));
908 SQLite.Shell.sql_quote(iname) + ")"));
943 SQLite.Shell.sql_quote(table) + ")"));
1034 SQLite.Shell.sql_quote(table) + ")"))
    [all...]
  /external/python/cpython2/Lib/lib-tk/
Tix.py     [all...]
  /external/python/cpython3/Lib/tkinter/
tix.py     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
shldisp.h 179 typedef class Shell Shell;
181 typedef struct Shell Shell;
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tix.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tix.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py     [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
UserManagerService.java     [all...]

Completed in 393 milliseconds

1 2