Searched defs:RunShellCommand (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/build/android/gyp/
H A Dcreate_device_library_links.py29 def RunShellCommand(device, cmd): function
30 output = device.RunShellCommand(cmd)
68 RunShellCommand(device, mkdir_cmd)
80 RunShellCommand(device, trigger_cmd)
/external/chromium_org/build/android/gyp/util/
H A Dbuild_device.py31 def RunShellCommand(self, *args, **kwargs): member in class:BuildDevice
32 return self.adb.RunShellCommand(*args, **kwargs)
62 cmd_output = adb.RunShellCommand(cmd)
69 cmd_output = adb.RunShellCommand(cmd)
/external/chromium_org/tools/telemetry/telemetry/core/backends/
H A Dadb_commands.py77 def RunShellCommand(self, command, timeout_time=20, log_result=False): member in class:AdbCommands
91 return self._adb.RunShellCommand(command, timeout_time, log_result)
/external/chromium_org/tools/telemetry/telemetry/unittest/
H A Dsystem_stub.py61 def RunShellCommand(self, args): member in class:AdbCommandsModuleStub.AdbCommandsStub
/external/chromium_org/build/android/pylib/
H A Dandroid_commands.py303 root_test_output = self.RunShellCommand('ls /root') or ['']
326 return self.RunShellCommand('date +%Y')[0]
330 self._external_storage = self.RunShellCommand('echo $EXTERNAL_STORAGE')[0]
358 self.RunShellCommand('stop')
359 self.RunShellCommand('start')
584 output = self.RunShellCommand('ls ' + external_storage)
626 def RunShellCommand(self, command, timeout_time=20, log_result=False): member in class:AndroidCommands
653 """See RunShellCommand() above.
658 lines = self.RunShellCommand(
687 self.RunShellCommand(cm
[all...]

Completed in 425 milliseconds