/cts/hostsidetests/edi/src/android/edi/cts/ |
D | PropertyDeviceInfo.java | 59 private void parseProps(String stdout, HostInfoStore store) throws Exception { in parseProps() argument 61 if (stdout == null) stdout = ""; in parseProps() 62 try (Scanner scanner = new Scanner(stdout)) { in parseProps()
|
/cts/hostsidetests/scopedstorage/host/src/android/scopedstorage/cts/host/ |
D | BaseHostTestCase.java | 86 String stdout = result.getStdout(); in isSuccessful() local 87 if (stdout.contains(ERROR_MESSAGE_TAG)) { in isSuccessful()
|
/cts/tests/tests/car/src/android/car/cts/ |
D | CarApiTestBase.java | 125 ParcelFileDescriptor stdout = uiAutomation.executeShellCommand( in executeShellCommand() local 127 try (InputStream inputStream = new ParcelFileDescriptor.AutoCloseInputStream(stdout)) { in executeShellCommand()
|
/cts/tests/framework/base/biometrics/src/android/server/biometrics/ |
D | Utils.java | 138 ByteArrayOutputStream stdout = new ByteArrayOutputStream(); in executeShellCommand() local 140 stdout.write(buf, 0, bytesRead); in executeShellCommand() 143 return stdout.toByteArray(); in executeShellCommand()
|
/cts/tests/tests/content/src/android/content/pm/cts/ |
D | PackageManagerShellCommandIncrementalTest.java | 551 (stdout) -> { in testInstallWithIdSigNoMissingPages() 552 try (Scanner scanner = new Scanner(stdout)) { in testInstallWithIdSigNoMissingPages() 883 (stdout) -> stdout.contains(expected)); in checkSysTraceForSubstring() 901 final String stdout = executeShellCommand("atrace --async_dump"); in checkSysTrace() 903 if (checker.apply(stdout)) { in checkSysTrace() 1063 final ParcelFileDescriptor stdout = getUiAutomation().executeShellCommand(command); in executeShellCommandStream() local 1064 return new ParcelFileDescriptor.AutoCloseInputStream(stdout); in executeShellCommandStream() 1086 ParcelFileDescriptor stdout = pfds[0]; in executeShellCommandRw() local 1096 return new ParcelFileDescriptor.AutoCloseInputStream(stdout); in executeShellCommandRw()
|
D | PackageManagerShellCommandTest.java | 107 final ParcelFileDescriptor stdout = getUiAutomation().executeShellCommand(command); in executeShellCommand() local 108 try (InputStream inputStream = new ParcelFileDescriptor.AutoCloseInputStream(stdout)) { in executeShellCommand() 121 ParcelFileDescriptor stdout = pfds[0]; in executeShellCommand() local 131 try (InputStream inputStream = new ParcelFileDescriptor.AutoCloseInputStream(stdout)) { in executeShellCommand()
|
D | ChecksumsTest.java | 1241 final ParcelFileDescriptor stdout = getUiAutomation().executeShellCommand(command); in executeShellCommand() local 1242 try (InputStream inputStream = new ParcelFileDescriptor.AutoCloseInputStream(stdout)) { in executeShellCommand()
|
/cts/hostsidetests/backup/src/android/cts/backup/ |
D | RestoreSessionHostSideTest.java | 240 OutputStream stdout = new FileOutputStream(outFile); in installWithAdb() local 243 runUtil.runTimedCmd(DEFAULT_TEST_TIMEOUT_MS, stdout, /* stderr= */ null, in installWithAdb()
|
/cts/hostsidetests/theme/ |
D | avd.py | 57 emu_proc = subprocess.Popen(emu_cmd.split(" "), bufsize=-1, stdout=subprocess.PIPE,
|
D | android_device.py | 38 adb_process = subprocess.Popen(args=adb_cmd.split(), bufsize=-1, stderr=PIPE, stdout=PIPE)
|
/cts/libs/install/src/android/cts/install/lib/host/ |
D | InstallUtilsHost.java | 152 String stdout = mTest.getDevice().executeAdbCommand(args); in installApexes() local 153 assertThat(stdout).isNotNull(); in installApexes()
|
/cts/suite/audio_quality/lib/src/ |
D | FileUtil.cpp | 145 fprintf(stdout, "%s", mBuffer); in doVprintf()
|
/cts/tests/framework/base/windowmanager/src/android/server/wm/ |
D | ActivityManagerGetConfigTests.java | 88 ByteArrayOutputStream stdout = new ByteArrayOutputStream(); in executeShellCommand() local 90 stdout.write(buf, 0, bytesRead); in executeShellCommand() 93 return stdout.toByteArray(); in executeShellCommand()
|
/cts/hostsidetests/seccomp/app/ |
D | gen_blocklist.py | 116 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
/cts/apps/CameraITS/utils/ |
D | its_session_utils.py | 142 proc = subprocess.Popen(command.split(), stdout=subprocess.PIPE) 198 command.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE) 237 self.adb.split() + ['logcat'], stdout=subprocess.PIPE) 238 logcat = proc.stdout 1180 subprocess.check_call(cmd.split(), stdout=devnull, stderr=subprocess.STDOUT)
|
/cts/apps/CameraITS/tools/ |
D | run_sensor_fusion.py | 162 output = subprocess.run(cmd, stdout=fp)
|
D | run_all_tests.py | 148 subprocess.check_call(cmd.split(), stdout=devnull, stderr=subprocess.STDOUT) 520 output = subprocess.run(cmd, stdout=fp)
|
/cts/tools/utils/ |
D | monsoon.py | 420 sys.stdout.flush() 427 sys.stdout.flush()
|
/cts/tools/incremental-cts/ |
D | incremental_deqp.py | 197 completed = subprocess.run(adb_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) 202 return completed.stdout
|
/cts/apps/CtsVerifier/assets/scripts/ |
D | execute_power_tests.py | 561 sys.stdout.write("\33[1A\33[2K") 891 sys.stdout.flush() 898 sys.stdout.flush()
|
/cts/hostsidetests/incrementalinstall/src/android/incrementalinstall/cts/ |
D | IncrementalInstallTest.java | 368 OutputStream stdout = new FileOutputStream(outFile); in installWithAdbInstaller() local 371 runUtil.runTimedCmd(DEFAULT_TEST_TIMEOUT_MS, stdout, /* stderr= */ null, in installWithAdbInstaller()
|
/cts/suite/cts/utils/ |
D | get_csv_report.py | 142 p = subprocess.Popen(command.split(), stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
/cts/tools/release-parser/tests/resources/ |
D | CtsAslrMallocTestCases32.pb.txt | 570 name: "stdout"
|
/cts/tests/app/src/android/app/cts/ |
D | ServiceTest.java | 440 ByteArrayOutputStream stdout = new ByteArrayOutputStream(); in executeShellCommand() local 442 stdout.write(buf, 0, bytesRead); in executeShellCommand() 445 return stdout.toByteArray(); in executeShellCommand()
|
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/ |
D | WindowManagerState.java | 361 ByteArrayOutputStream stdout = new ByteArrayOutputStream(); in executeShellCommand() local 363 stdout.write(buf, 0, bytesRead); in executeShellCommand() 366 return stdout.toByteArray(); in executeShellCommand()
|