Home
last modified time | relevance | path

Searched refs:runCmdInBackground (Results 1 – 5 of 5) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/util/
DIRunUtil.java172 public Process runCmdInBackground(String... command) throws IOException; in runCmdInBackground() method
183 public Process runCmdInBackground(List<String> command) throws IOException; in runCmdInBackground() method
193 public Process runCmdInBackground(List<String> command, OutputStream output) in runCmdInBackground() method
DRunUtil.java280 public Process runCmdInBackground(final String... command) throws IOException { in runCmdInBackground() method in RunUtil
290 public Process runCmdInBackground(final List<String> command) throws IOException { in runCmdInBackground() method in RunUtil
299 public Process runCmdInBackground(List<String> command, OutputStream output) in runCmdInBackground() method in RunUtil
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
DRunHostCommandTargetPreparerTest.java125 EasyMock.expect(mRunUtil.runCmdInBackground(Arrays.asList(commandArray), mockOut)) in testBgCommand()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DRunHostCommandTargetPreparer.java222 .runCmdInBackground( in runBgCommandList()
/tools/tradefederation/core/src/com/android/tradefed/device/
DDeviceManager.java620 Process p = runUtil.runCmdInBackground(fullArgs, emulatorOutput); in launchEmulator()