Home
last modified time | relevance | path

Searched refs:getAdbPath (Results 1 – 16 of 16) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/util/
DBundletoolUtil.java98 if (getAdbPath() != null) { in generateDeviceSpecFile()
99 generateDeviceSpecCmd.add("--adb=" + getAdbPath()); in generateDeviceSpecFile()
189 if (getAdbPath() != null) { in installApksOnDevice()
190 installApksCmd.add("--adb=" + getAdbPath()); in installApksOnDevice()
264 protected String getAdbPath() { in getAdbPath() method in BundletoolUtil
265 String adbPath = GlobalConfiguration.getDeviceManagerInstance().getAdbPath(); in getAdbPath()
/tools/tradefederation/core/src/com/android/tradefed/device/
DMicrodroidHelper.java42 deviceManager.getAdbPath(), in runOnMicrodroid()
63 deviceManager.getAdbPath(), in tryRunOnMicrodroid()
DIDeviceManager.java287 public String getAdbPath(); in getAdbPath() method
DTestDevice.java2898 deviceManager.getAdbPath(), in startMicrodroid()
3060 deviceManager.getAdbPath(), in forwardMicrodroidAdbPort()
3101 .runTimedCmd(10000, deviceManager.getAdbPath(), "-s", serial, "forward", from, to); in adbConnectToMicrodroid()
3112 deviceManager.getAdbPath(), in adbConnectToMicrodroid()
3117 deviceManager.getAdbPath() in adbConnectToMicrodroid()
3131 10000, deviceManager.getAdbPath(), "disconnect", microdroidSerial); in adbConnectToMicrodroid()
3141 deviceManager.getAdbPath(), in adbConnectToMicrodroid()
3191 GlobalConfiguration.getDeviceManagerInstance().getAdbPath(), in shutdownMicrodroid()
DDeviceManager.java1043 String[] fullCmd = ArrayUtil.buildArray(new String[] {getAdbPath()}, cmdArgs); in executeGlobalAdbCommand()
1603 public String getAdbPath() { in getAdbPath() method in DeviceManager
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/binary/
DExecutableHostTest.java128 AdbUtils.updateAdb(getTestInfo(), runUtil, getAdbPath()); in runBinary()
198 String getAdbPath() { in getAdbPath() method in ExecutableHostTest
199 return GlobalConfiguration.getDeviceManagerInstance().getAdbPath(); in getAdbPath()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/python/
DPythonBinaryHostTest.java307 AdbUtils.updateAdb(testInfo, getRunUtil(), getAdbPath()); in runSinglePythonFile()
424 String getAdbPath() { in getAdbPath() method in PythonBinaryHostTest
425 return GlobalConfiguration.getDeviceManagerInstance().getAdbPath(); in getAdbPath()
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DRunHostScriptTargetPreparer.java177 String adbPath = getDeviceManager().getAdbPath(); in setPathVariable()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/mobly/
DMoblyBinaryHostTest.java409 AdbUtils.updateAdb(mTestInfo, getRunUtil(), getAdbPath()); in runSingleParFile()
806 String getAdbPath() { in getAdbPath() method in MoblyBinaryHostTest
807 return GlobalConfiguration.getDeviceManagerInstance().getAdbPath(); in getAdbPath()
/tools/tradefederation/core/javatests/com/android/tradefed/util/
DBundletoolUtilTest.java74 protected String getAdbPath() { in setUp()
/tools/tradefederation/core/test_framework/com/android/tradefed/util/
DDeviceActionUtil.java204 File adbFile = new File(GlobalConfiguration.getDeviceManagerInstance().getAdbPath()); in getAdb()
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/
DRunHostScriptTargetPreparerTest.java106 when(mDeviceManager.getAdbPath()).thenReturn("adb"); in setUp()
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DMockDeviceManager.java388 public String getAdbPath() { in getAdbPath() method in MockDeviceManager
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/binary/
DExecutableHostTestTest.java83 String getAdbPath() { in setUp()
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/python/
DPythonBinaryHostTestTest.java98 String getAdbPath() { in setUp()
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/mobly/
DMoblyBinaryHostTestTest.java118 Mockito.doReturn("not_adb").when(mSpyTest).getAdbPath(); in setUp()