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

/external/chromium_org/build/android/gyp/
H A Dcreate_device_library_links.py27 def RunShellCommand(device, cmd): function
28 output = device.RunShellCommand(cmd)
66 RunShellCommand(device, mkdir_cmd)
78 RunShellCommand(device, trigger_cmd)
/external/chromium_org/build/android/gyp/util/
H A Dbuild_device.py33 def RunShellCommand(self, *args, **kwargs): member in class:BuildDevice
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/
H A Ddevice_utils.py284 def RunShellCommand(self, cmd, check_return=False, as_root=False, member in class:DeviceUtils
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(cm
[all...]
/external/chromium_org/tools/telemetry/telemetry/unittest/
H A Dsystem_stub.py73 def RunShellCommand(self, args): member in class:AdbDevice
/external/chromium_org/build/android/pylib/
H A Dandroid_commands.py108 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): member in class:AndroidCommands
729 """See RunShellCommand() abov
[all...]
/external/lldb/source/Host/common/
H A DHost.cpp1354 // Let the thread running Host::RunShellCommand() know that the process
1357 // Now wait for a handshake back from that thread running Host::RunShellCommand
1368 Host::RunShellCommand (const char *command, function in class:Host

Completed in 203 milliseconds