Home
last modified time | relevance | path

Searched refs:fastboot (Results 1 – 9 of 9) sorted by relevance

/tools/tradefederation/contrib/src/com/android/fastboot/tests/
DFastbootTest.java16 package com.android.fastboot.tests;
171 File fastboot = getFastbootFile(mBuildInfo); in testFastboot() local
172 if (fastboot == null) { in testFastboot()
178 ((IManagedTestDevice) mDevice).setFastbootPath(fastboot.getAbsolutePath()); in testFastboot()
289 File fastboot = buildInfo.getFile("fastboot"); in getFastbootFile() local
290 if (fastboot == null) { in getFastbootFile()
293 FileUtil.chmodGroupRWX(fastboot); in getFastbootFile()
294 return fastboot; in getFastbootFile()
/tools/tradefederation/core/src/com/android/tradefed/device/
DDeviceManager.java267 final FastbootHelper fastboot = new FastbootHelper(getRunUtil(), getFastbootPath()); in init() local
268 if (fastboot.isFastbootAvailable()) { in init()
561 final FastbootHelper fastboot = new FastbootHelper(getRunUtil(), getFastbootPath()); in addFastbootDevices() local
562 Set<String> serials = fastboot.getDevices(); in addFastbootDevices()
1352 final FastbootHelper fastboot = new FastbootHelper(getRunUtil(), getFastbootPath()); in run() local
1354 Map<String, Boolean> serialAndMode = fastboot.getBootloaderAndFastbootdDevices(); in run()
DFastbootHelper.java109 Set<String> fastboot = parseDevices(fastbootResult.getStdout(), false); in getBootloaderAndFastbootdDevices() local
112 for (String f : fastboot) { in getBootloaderAndFastbootdDevices()
/tools/test/connectivity/acts/framework/acts/controllers/
Dandroid_device.py34 from acts.controllers import fastboot
194 out = fastboot.FastbootProxy().devices()
375 self.fastboot = fastboot.FastbootProxy(
516 out = self.fastboot.getvar("product").strip()
1238 self.fastboot.reboot()
/tools/tradefederation/core/src/com/android/tradefed/device/recovery/
DUsbResetMultiDeviceRecovery.java76 FastbootHelper fastboot = getFastbootHelper(); in recoverDevices() local
77 Set<String> fastbootSerials = fastboot.getDevices(); in recoverDevices()
/tools/test/connectivity/acts_tests/tests/google/tel/live/
DTelLiveNoQXDMLogTest.py508 ad.fastboot._w(timeout=300, ignore_status=True)
513 ad.fastboot.oem("continue-factory")
/tools/test/connectivity/acts/framework/acts/test_utils/tel/
Dtel_test_utils.py8082 ad.fastboot._w(timeout=300, ignore_status=True)
8085 ad.fastboot.reboot()
8145 ad.fastboot.reboot()
8476 ad.fastboot.flash("radio %s" % file_path, timeout=300)
8479 ad.fastboot.reboot("bootloader")
8481 output = ad.fastboot.getvar("version-baseband")
8490 ad.fastboot.reboot()
/tools/test/connectivity/acts/framework/acts/test_utils/gnss/
Dgnss_test_utils.py557 ad.fastboot._w(timeout=300, ignore_status=True)
560 ad.fastboot.reboot()
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DDeviceManagerTest.java397 File fastboot = new File(tmpDir, "fastboot"); in testUnpackZippedFastboot() local
398 FileUtil.writeToFile("TEST", fastboot); in testUnpackZippedFastboot()