HomeSort by relevance Sort by last modified time
    Searched defs:RunShellCommand (Results 1 - 6 of 6) 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/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 284 def RunShellCommand(self, cmd, check_return=False, as_root=False,
313 """Implementation of RunShellCommand.
315 This is split from RunShellCommand to allow other DeviceUtils methods to
316 call RunShellCommand without spawning a new timeout thread.
322 cmd: Same as for |RunShellCommand|.
323 check_return: Same as for |RunShellCommand|.
324 as_root: Same as for |RunShellCommand|.
328 Same as for |RunShellCommand|.
331 Same as for |RunShellCommand|.
344 output = self.old_interface.RunShellCommand(cmd, timeout_time=timeout
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/unittest/
system_stub.py 73 def RunShellCommand(self, args):
  /external/chromium_org/build/android/pylib/
android_commands.py 108 self.android_commands.RunShellCommand('rm ' + self.name)
370 root_test_output = self.RunShellCommand('ls /root') or ['']
393 return self.RunShellCommand('date +%Y')[0]
397 self._external_storage = self.RunShellCommand('echo $EXTERNAL_STORAGE')[0]
428 self.RunShellCommand('stop')
429 self.RunShellCommand('start')
566 self.RunShellCommand('. %s' % temp_script_file.name)
652 output = self.RunShellCommand('ls ' + external_storage)
700 def RunShellCommand(self, command, timeout_time=20, log_result=False):
729 """See RunShellCommand() above
    [all...]
  /external/lldb/source/Host/common/
Host.cpp     [all...]

Completed in 607 milliseconds