Searched refs:stdout (Results 1 – 2 of 2) sorted by relevance
/platform_testing/libraries/tradefed-python-lib/tradefed_py/ |
D | adb_handler.py | 29 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) 34 raise AdbError(cmd=cmd, stdout=out, stderr=err, ret_code=ret) 39 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) 44 raise AdbError(cmd=cmd, stdout=out, stderr=err, ret_code=ret) 49 def __init__(self, cmd, stdout, stderr, ret_code): argument 51 self.stdout = stdout 57 ) % (self.cmd, self.ret_code, self.stdout, self.stderr)
|
/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/ |
D | ProcessStatusTracker.java | 232 ParcelFileDescriptor stdout = getUiAutomation().executeShellCommand(command); in executeShellCommand() local 235 new ParcelFileDescriptor.AutoCloseInputStream(stdout))); in executeShellCommand()
|