HomeSort by relevance Sort by last modified time
    Searched defs:RunShellCommand (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/build/android/gyp/
create_device_library_links.py 27 def RunShellCommand(device, cmd):
28 output = device.RunShellCommand(cmd)
66 RunShellCommand(device, mkdir_cmd)
78 RunShellCommand(device, trigger_cmd)
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
android_platform_backend_unittest.py 29 def RunShellCommand(self, command):
  /external/chromium_org/build/android/gyp/util/
build_device.py 33 def RunShellCommand(self, *args, **kwargs):
34 return self.device.RunShellCommand(*args, **kwargs)
64 cmd_output = device.RunShellCommand(cmd)
76 cmd_output = device.RunShellCommand(cmd)
  /external/chromium_org/build/android/pylib/device/
device_utils.py 247 def RunShellCommand(self, cmd, check_return=False, root=False, timeout=None,
270 """Implementation of RunShellCommand.
272 This is split from RunShellCommand to allow other DeviceUtils methods to
273 call RunShellCommand without spawning a new timeout thread.
279 cmd: Same as for |RunShellCommand|.
280 check_return: Same as for |RunShellCommand|.
283 Same as for |RunShellCommand|.
285 Same as for |RunShellCommand|.
298 output = self.old_interface.RunShellCommand(cmd, timeout_time=timeout)
  /external/chromium_org/tools/telemetry/telemetry/unittest/
system_stub.py 60 def RunShellCommand(self, args):
  /external/chromium_org/build/android/pylib/
android_commands.py 107 self.android_commands.RunShellCommand('rm ' + self.name)
362 root_test_output = self.RunShellCommand('ls /root') or ['']
385 return self.RunShellCommand('date +%Y')[0]
389 self._external_storage = self.RunShellCommand('echo $EXTERNAL_STORAGE')[0]
417 self.RunShellCommand('stop')
418 self.RunShellCommand('start')
555 self.RunShellCommand('. %s' % temp_script_file.name)
641 output = self.RunShellCommand('ls ' + external_storage)
713 def RunShellCommand(self, command, timeout_time=20, log_result=False):
744 """See RunShellCommand() above
    [all...]
  /external/lldb/source/Host/common/
Host.cpp     [all...]

Completed in 306 milliseconds