Home
last modified time | relevance | path

Searched refs:updatedAdb (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/mobly/
DMoblyBinaryHostTest.java200 File updatedAdb = mBuildInfo.getFile(AdbStopServerPreparer.ADB_BINARY_KEY); in updateAdb() local
201 if (updatedAdb == null) { in updateAdb()
205 updatedAdb = new File(adbPath); in updateAdb()
206 if (!updatedAdb.exists()) { in updateAdb()
207 updatedAdb = null; in updateAdb()
211 if (updatedAdb != null) { in updateAdb()
212 CLog.d("Testing with adb binary at: %s", updatedAdb); in updateAdb()
229 updatedAdb.getParentFile().getAbsolutePath(), in updateAdb()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/python/
DPythonBinaryHostTest.java271 File updatedAdb = testInfo.executionFiles().get(FilesKey.ADB_BINARY); in runSinglePythonFile() local
272 if (updatedAdb == null) { in runSinglePythonFile()
276 updatedAdb = new File(adbPath); in runSinglePythonFile()
277 if (!updatedAdb.exists()) { in runSinglePythonFile()
278 updatedAdb = null; in runSinglePythonFile()
282 if (updatedAdb != null) { in runSinglePythonFile()
283 CLog.d("Testing with adb binary at: %s", updatedAdb); in runSinglePythonFile()
300 updatedAdb.getParentFile().getAbsolutePath(), in runSinglePythonFile()